how can i set the value in textbox using ASP
-
hello frnd, i am developed a website using ASP i want to set the value in my textbox at runtime but i can't. my textbox is like i have tried using hidTest.value = "Assign" but failed.. what can i do ???? plz help regards, koolprasad2003:) Be a good listener...Because Opprtunity knoughts softly...N-Joy
-
hello frnd, i am developed a website using ASP i want to set the value in my textbox at runtime but i can't. my textbox is like i have tried using hidTest.value = "Assign" but failed.. what can i do ???? plz help regards, koolprasad2003:) Be a good listener...Because Opprtunity knoughts softly...N-Joy
-
thankx for reply, but i don't want to use scripting any other way ???? regards, koolprasad2003:) Be a good listener...Because Opprtunity knoughts softly...N-Joy
-
hello frnd, i am developed a website using ASP i want to set the value in my textbox at runtime but i can't. my textbox is like i have tried using hidTest.value = "Assign" but failed.. what can i do ???? plz help regards, koolprasad2003:) Be a good listener...Because Opprtunity knoughts softly...N-Joy
koolprasad2003 wrote:
<input type="hidden" value="" name="hidTest" **value="<%=ValueForHiddenFieldFromServer%>"**>
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
hello frnd, i am developed a website using ASP i want to set the value in my textbox at runtime but i can't. my textbox is like i have tried using hidTest.value = "Assign" but failed.. what can i do ???? plz help regards, koolprasad2003:) Be a good listener...Because Opprtunity knoughts softly...N-Joy
assign a runat="server" property, and an ID, then you can set it's value in your code behind ... in code-behind: hidText.value = "xyz" ... this is if you're using asp.net - if clasic asp then yuo'll need to follow the post above...