accessing html input fields

J

Jessica Weiner

I have an input field defined outside the <form> area. Its a simple html
text input that is used to enter the number of hours.

<input id="HoursField" name="hours" type="text" />

I want to access this field from the server side (c# code). I tried these
two methods to access the field but they dont work. Please help.

String[] tempArray;
tempArray = Request.Form.GetValues("hours");
Response.Write (tempArray[0]);

---

string val = Request.QueryString["hours"].ToString();
Response.Write (val);


Jessica
 
B

Bart Van der Donck

Jessica said:
I have an input field defined outside the <form> area.

By doing so, you don't pass the name/value pair of that <input> element
to your gateway program, so there is no way to read it out. (but then,
why on earth would one want to place it outside the form if you need it
to reach the server?)

Hope this helps,
 
M

marss

Jessica Weiner напиÑав:
I have an input field defined outside the <form> area. Its a simple html
text input that is used to enter the number of hours.

<input id="HoursField" name="hours" type="text" />

If it absolutely necessary to place input out of the form you can
achieve your goal by adding input field dinamically to the form
directly before posting the form to the server.

at client side:

<script type=text/javascript>
function SubmitHours()
{
document.forms[0].appendChild(document.getElementById('HoursField'));
document.forms[0].submit();
}
</script>
.....
<input id="HoursField" name="hours" type="text" >
<input type="button" value="Post Hours" onclick="SubmitHours()">
.....


at the server side in Page_Load:

if (Request.Form["hours"] != null)
{
string s = Request.Form["hours"];
//.........
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top