i am working on online railway reservation project in asp.net using vb.net. in this project ,i want when user enter train name,source and destination on one page,it displays all these textbox values on textboxes of another page.please tell me urgently how can i do.

hii,
u can achieve that using session or using querystring.
session('txt1')=textbox1.text in first page and retrieve that in second page as
textbox2.text=session('txt1').tostring
or using querystring
page2.aspx?id='"textbox1.text"' in page redirect

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.