Hi,
If you want to access client controls, you will use Request.Form[""].
For example,
You have an aspx page which contains some server side & client side side controls.
If you want to access server controls in .cs page, you can access by its id. but you won't in case of client controls.
So if you alse want to access this, you have to use Request.Form[""].
in .aspx page <asp:TextBox ID="txtServerControl" runat="server" Text=""/>
<input type="text" name="txtClientControl" id="txtClientControl" value=""/>
now in .cs page: string serverControlVal=txtServerControl.Text;
string clientControlValue=Request.Form["txtClientControl"];
Please mark as answer if you satisfied with the response.
Thank you,
Govind
Swappy_Gaj, if this helps please login to Mark As Answer. | Alert Moderator