How to access the values of html input box
-
Hi I am using div tag into ASP.NET using c#. I am creating the text boxes dynamically by giving the Innert html to that div into the loop as string inputhtml = ""; and this inputhtml given to that div as div.InnerHTML=inputhtml and now I want to access the values of this Textboxs on some button click. Swapnil Bhavsar
-
Hi I am using div tag into ASP.NET using c#. I am creating the text boxes dynamically by giving the Innert html to that div into the loop as string inputhtml = ""; and this inputhtml given to that div as div.InnerHTML=inputhtml and now I want to access the values of this Textboxs on some button click. Swapnil Bhavsar
from server side u can access thru Request object like
Request.Form("...")
from client side u can access thrudocument.getElementById("....")
Regards R.Arockiapathinathan -
from server side u can access thru Request object like
Request.Form("...")
from client side u can access thrudocument.getElementById("....")
Regards R.Arockiapathinathan