This is a security feature of ASP.NET, it won't let you put a password in your page source (which what you would be doing).
Couple ways around it. Store the actual password in viewstate or a session variable , then in your server code check to see if the user has entered a password, if not, use the stored values. Imagine you are doing this to allow account add/update on the same page. If so will need to turn off the required field validator for the password field when updating. There was some discussion of this in this group late last year or earlier this year, with some more creative work-arounds if this does not satisfy your needs. On 7/28/05, esimplest <[EMAIL PROTECTED]> wrote: > When i am assigning cookie field to a password text box on the form, it > does not show anything - but it does when i make the text box single > line? > > Any thoughts. > > > > > > > > > Yahoo! Groups Links > > > > > > > -- Dean Fiala Very Practical Software, Inc http://www.vpsw.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
