I have textarea and link on my code aspx page. How can i access these values on my code aspx.cs page?
Note: I do not want to use runat=server tag for my table.
Well, you have to have runat="server" in your TextArea and your Link if you want to access them in your server code like any other ASP.NET control. You could use the Request object to retrieve the TextArea by ID from the Request.Params property.
It's best if you posted your code so that we can help you further.
If you do not want to use runat=server you can only really read what the client posts back to use and cannot manipulate the element from your server code (besides some render tags in the markup or something) Make sure the element is nested inside the form element, give it an id, and you should be able access the client posts to you via HttpRequest.For m collection via the id you specified.
Comment