forum

Home / DeveloperSection / Forums / Keeping values on form after submition

Keeping values on form after submition

Jayden Bell 1596 27-Aug-2014

I'm trying to keep the entered data in the form after submitting by using "value=..."

I'm getting a compilation error on the following code:

<form id="myform">
           <input id="hour" type="text" name="hour" value="<%=hour%>" style="width:30px;text-align:center;" /> :
           <input id="minute" type="text" name="minute" value="<%=minute%>" style="width:30px; text-align:center;" />
           <br/>
           <input type="submit" value="Validate!" />
</form>

the error is : Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0103: The name 'hour' does not exist in the current context

any solution? thanks a lot in advance


Updated on 27-Aug-2014

Can you answer this question?


Answer

1 Answers

Liked By