Recent content by hmmmmmmmm!

  1. H

    i learned html!!! where can i learn css?

    Please look at the link which contains CSS tutorial within the w3schools.com.
  2. H

    Asp.NET and C# problem, checkbox to enable a button dynamically. Help.?

    There is only one way to do this, that is using javascript which does not requires page reload. You cannot direct drop script tag as in HTML page, there is a different way of adding javascript to aspx page.
  3. H

    Asp.NET and C# problem, checkbox to enable a button dynamically. Help.?

    There is only one way to do this, that is using javascript which does not requires page reload. You cannot direct drop script tag as in HTML page, there is a different way of adding javascript to aspx page.
  4. H

    Asp.NET and C# problem, checkbox to enable a button dynamically. Help.?

    There is only one way to do this, that is using javascript which does not requires page reload. You cannot direct drop script tag as in HTML page, there is a different way of adding javascript to aspx page.
  5. H

    Asp.NET and C# problem, checkbox to enable a button dynamically. Help.?

    There is only one way to do this, that is using javascript which does not requires page reload. You cannot direct drop script tag as in HTML page, there is a different way of adding javascript to aspx page.
  6. H

    How do I reformat a variable in PHP, I need help doing it three different ways.?

    $recipe1 = str_replace(" ", "%2C+", $recipe); $words = explode(" ", $recipe); $firstWord = $words[0]; $recipe2 = str_replace(" ", "+", $recipe);
Back
Top