Re: Greater than symbol in control attributes

  •  01-06-2011, 8:52 AM

    Re: Greater than symbol in control attributes

    Dear Tobster,
     
    Editor1.Text = "<input id=\"text1\" value=\"text1\" name=\"text1\" enabledlogic='\"Param1\" > \"Param2\"' type=\"text\" />";
    This highlighted code is incorrect, it doesn't conform w3c standards, you can refer to http://w3schools.com/TAGS/tag_input.asp 
     
    Run it and switch to the HTML tab. What should be:
    <input id="text1" value="text1" name="text1" enabledlogic='"Param1" > "Param2"' type="text" />
    is actually:
    <input id="text1" value="text1" name="text1" enabledlogic='"Param1"   type="text" /> "Param2"'>
     
    This highlighted code is also incorrect.
     
    Thank you for asking
     
     
View Complete Thread