save user credentials

  • Thread starter Thread starter Mudasir Ahmed
  • Start date Start date
M

Mudasir Ahmed

Guys :
I have written a web page which basically has text box and a list
box server controls on it. each time the user enters a value in the
text box it will put it in the list box.

the problem is. since the website has to go through the intranet
security it asks for a userid and password every time the page
refreshes. How can i persist the user cerdentials or in other words
avoid the security popup box each time the the page refreshes.

Any help will be greatly appreciated.

Thank you.
 
persist user state with
--session value or
--hidden field or
--cookie or
-- part of querystring or
--store a value in a database
 
Back
Top