Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to create a sample project
1) Two forms are there
2)In the first form one TextBox Id=action and one submit button is there.
3)we enter the required function ex:getstudentId name in the textbox then submit,
4) In the second form we just use the request function and give output in this form.

i think like this:
C#
string act = Request.Form(action);
        if (action == "getstudentId")
        {
            string resp = getstudentId();
        }
        string resp = "getstudentId();

getstudentId() is a function where we can call the Id from database. i give the output after first form request to the next form.
its not real code. just i think should be like this. But i want to help how can i do this.
Posted
Updated 18-May-11 0:45am
v2

Google is your best friend for this type of question.
A ASP.NET basic tutorial search returned about 7.94 million results. Try looking at some of the tutorials that come up and try building the simple solution yourself. If you have specific questions at that point, raise them here again and we would be very happy to help you.

[Edit]Going through your question history, I see that you have asked the simple questions at every point in your studies. All the steps required to complete this assignment have been answered in those questions along the way. Go back over all the questions you have asked and you will find your answer. Note: The above noted Google search will still be very valuable to you.[\Edit]
 
Share this answer
 
v2
How about you do some googling and do your homework yourself
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900