accessing asp:textbox with javascripts
-
I want to update a asp:textbox with a javasript. Something similar to what codeproject has ... The problem is ... the textbox in my case is inside a DetailsView, which is in one of the row of a gridview. Please help me with this ...
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
-
I want to update a asp:textbox with a javasript. Something similar to what codeproject has ... The problem is ... the textbox in my case is inside a DetailsView, which is in one of the row of a gridview. Please help me with this ...
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
This doesn't really matter, all that matters is that you need to write the client side names of your textboxes as javascript variables, using their clientID method on the server side, so that you're able to access them.
Christian Graus Driven to the arms of OSX by Vista.
-
I want to update a asp:textbox with a javasript. Something similar to what codeproject has ... The problem is ... the textbox in my case is inside a DetailsView, which is in one of the row of a gridview. Please help me with this ...
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
You have to first run the page and then get the name of that textbox at the runtime suppose the textbox name is Ct001txt_userid then the you can get the value of text box at the run time by following var c=document.getElelmentById('Ct001txt_userid'); if(c.value=='vinod') { alert('Hi You Are Vinod') } else { alert('Hi You are not Vinod') } You can get the value of textbox by other way also var b=document.getElementById("<%=txt.ClientID%>") in the second way the name of the Control is the same what is at server end Vinod Kumar Prajapati Software Engineer EBC publishing Ltd. Lucknow(India)