submit button
-
kindly help me to solve this issue.....i have Created a Login website - Validation Controls Registration Page but my submit button doesn't show message code i wrote which was:- Response.Write("YOU HAVE SUCCESSFULLY REGISTERED...!!!!");
-
kindly help me to solve this issue.....i have Created a Login website - Validation Controls Registration Page but my submit button doesn't show message code i wrote which was:- Response.Write("YOU HAVE SUCCESSFULLY REGISTERED...!!!!");
-
Please edit your question and show the code that has the problem. Without it it is impossible to guess what may be wrong.
button code was one line code and here it is, Response.Write("you have successfully registered!!!"); once i fill out my web form registration form and i click on submit button nothing is displayed from what i wrote on button code(submit)
-
kindly help me to solve this issue.....i have Created a Login website - Validation Controls Registration Page but my submit button doesn't show message code i wrote which was:- Response.Write("YOU HAVE SUCCESSFULLY REGISTERED...!!!!");
In addition to what Richard said, asp.net doesn't work like that, response.write is useless in 99% of occasions. If you view the source of your page you'll probably see your message right at the very bottom where it is no use at all. If you want to show a message in a particular place use an empty asp:Label or asp:Literal and when you want the message to be there set the Text of the label\literal to your message, you can also use the Visible property to show\hide it.
-
button code was one line code and here it is, Response.Write("you have successfully registered!!!"); once i fill out my web form registration form and i click on submit button nothing is displayed from what i wrote on button code(submit)
-
In addition to what Richard said, asp.net doesn't work like that, response.write is useless in 99% of occasions. If you view the source of your page you'll probably see your message right at the very bottom where it is no use at all. If you want to show a message in a particular place use an empty asp:Label or asp:Literal and when you want the message to be there set the Text of the label\literal to your message, you can also use the Visible property to show\hide it.
Kindly where can i find asp:label? or literal and how am i going to use it? kindly direct me
-
but i didn't understand ..kindly break it for me
-
Kindly where can i find asp:label? or literal and how am i going to use it? kindly direct me
-
kindly help me to solve this issue.....i have Created a Login website - Validation Controls Registration Page but my submit button doesn't show message code i wrote which was:- Response.Write("YOU HAVE SUCCESSFULLY REGISTERED...!!!!");
Just the same way you used to add the button control, same way you will find the Label control and add it. Or just copy this
Then from codebehind, enter this code on your submit button event.
Label1.Text = "You have successfully registered";
-
kindly help me to solve this issue.....i have Created a Login website - Validation Controls Registration Page but my submit button doesn't show message code i wrote which was:- Response.Write("YOU HAVE SUCCESSFULLY REGISTERED...!!!!");