I have a form in that four textboxes is there each having button to
look up,
if we click the button we are redirecting to EmployeeList webpage. in
that i have EmployeeName and EmployeeId,
I need to fill four textbox with Names of Employees,
for that i am passing Query string from EmployeeWebpage,Every time,
to My Page, the Query string values are not preserving in my Page?
this is the Problem.
plz relpy how to rectify?
Session['det"] = htable as HashTable
then in first lookup button click add emp name in hash table like this
HashTable htable = Session["det"] as HashTAble
htable.add(key,value emp name)
Session["det"] = htable
in nextpage
retrieve this hash tablw by key
and get data
hashtable ht = Session['det'] as hashtable
txt.text = ht["key"];
...........
may help u
if we place the seconf employee name query string in secondtextbox the
first text box is disapering