Hi
I have a master page which has a <form runat="server">
line and a ContentPlaceHolder in it.
I am trying create a content page using this master page whitch has text boxes in it. But I cannot reach values of theese text boxes using Request.Form["textbox"]
from that conent page. I need to use Request.Form["ctl00$ContentPlaceHolder1$textbox"]
.
Is this the normal way to do it? If not what might be I am doing wrong?
By the way I am using same content page to process form values.
So I guess my question is actually: How can I access form values of a Content Page within the same content page?