vote up 0 vote down star

How do I access data from html in asp.net in the .cs (code behind) file?

in .aspx page I have
             <tr>
                <td>Username:</td><td><input id="username" type="text" /></td>
             </tr>
             <tr>
                <td>Password:</td><td><input id="password" type="password" /></td>
             </tr>
             <tr>


I know I can convert this to something like:
    <tr>
        <td>Username:</td><td><asp:TextBox ID="username" TextMode="SingleLine" runat="server"></asp:TextBox></td>
     </tr>
     <tr>
        <td>Password:</td><td><asp:TextBox ID="password" TextMode="Password" runat=server></asp:TextBox></td>
     </tr>

This will allow me to access the controls via IDs. However I was wondering if there was a way of accessing data without using asp.net server-side controls.

flag

3 Answers

vote up 3 vote down check

Give the inputs a name as well as an id and you will be able to get the values from Request.Form. Inputs without names are not sent back with the form post.

<input id="username" name="username" type="text" />
<input id="password" name="password" type="password" />


var username = Request.Form["username"];
var password = Request.Form["password"];
link|flag
vote up 0 vote down

asp.net controls, are in essence html controls wrapped, so an asp:Button will render as a input html control. Some web developers prefer using html controls due to the smaller size. Therefore each html control will map to a asp server control. As the previous answer, from Joel, add the runat="server", then the control can be referenced by the ID in the code behind

link|flag
vote up 0 vote down

Add runat="server" to the controls, and then you can access them from the code-behind almost as if they were <asp:______ /> controls.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.