-1

I have a user id by using query string and i want to retrieve other data directly from the database(i dont want to use query string {}& name={}..like that further) anybody can help me pl.. i am beginner

Sergey K.
  • 24,894
  • 13
  • 106
  • 174
  • 2
    What is your question? Is it about querying a SQL database? – Darin Dimitrov Apr 07 '11 at 10:05
  • 2
    This is way too generic. Please update your question. – Alessandro Apr 07 '11 at 10:06
  • hi all.. i am developing a website using asp.net and c# . Since i need to transfer values of one page to other page's grid i used query string and now from that grid i need to fetch all the details to my new pgae which has txt boxes to have all the passed values – priyadharshini Apr 07 '11 at 10:20

1 Answers1

-1

If you don't want to use querystring than you can use session or a property in the page which you can set from the calling page.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
Pijush
  • 31
  • 10
  • hi thanks for your reply. but i could not do that so. because i have grid view , from the hyperlink of gridview i am getting bulk details to another page even though some data is not in the grid. so what to do if the data is not in the grid.. using query string i passed simply the name.. but i want to fetch other details using that... – priyadharshini Apr 07 '11 at 10:16
  • hi..what you can do is pass the id what is present in the gridview row to the other page and use the id to get other details which is required..I hope this will solve the problem. – Pijush Apr 07 '11 at 10:58