Retrieve User Logged On
-
Hi im using VS 2005 and I'm trying to write the LoginName logged into my webpage to a SQL Table There is a control called LoginName but I want to copy the user into a textbox. I've tried whit the following: TextBox1.Text = LoginName.ToString() but it doesn't works¡¡¡¡. Can somebody help??? THANX
-
Hi im using VS 2005 and I'm trying to write the LoginName logged into my webpage to a SQL Table There is a control called LoginName but I want to copy the user into a textbox. I've tried whit the following: TextBox1.Text = LoginName.ToString() but it doesn't works¡¡¡¡. Can somebody help??? THANX
-
Oh right ¡¡ thanx a lot¡¡ It is exactly what I need
-
Oh right ¡¡ thanx a lot¡¡ It is exactly what I need
-
Hi im using VS 2005 and I'm trying to write the LoginName logged into my webpage to a SQL Table There is a control called LoginName but I want to copy the user into a textbox. I've tried whit the following: TextBox1.Text = LoginName.ToString() but it doesn't works¡¡¡¡. Can somebody help??? THANX
If the control is called LoginName by doing ToString will return the internal name for LoginName on the control create a public string Text { get { return(name); } } or override ToString inside the control to return the name Hope this helps Al My eMail control My Blog