adding controls on one page from another page in C#.NET
-
if user is on login page..then on clicking login button i want to redirect user to the home page along with adding a menu on the home page containing some options ,i'm able to add menu dynamically on home page using place holder...but is it possible in C#.NET to add it on click event of button on another page...??
-
if user is on login page..then on clicking login button i want to redirect user to the home page along with adding a menu on the home page containing some options ,i'm able to add menu dynamically on home page using place holder...but is it possible in C#.NET to add it on click event of button on another page...??
No you can't add an event to another page. What event would you like to add?
I know the language. I've read a book. - _Madmatt
-
No you can't add an event to another page. What event would you like to add?
I know the language. I've read a book. - _Madmatt
hi...i'm making a website...i want that when user clicks login button...some options like "edit profile" and "logout" should get added on the home page for him and he should be directed to that home page instead of a new profile page....Is it possible in C#.NET???
-
hi...i'm making a website...i want that when user clicks login button...some options like "edit profile" and "logout" should get added on the home page for him and he should be directed to that home page instead of a new profile page....Is it possible in C#.NET???
Normally this is accomplished by setting some sort of flag when the user is authenticated, then making the menu items visible or invisible depending on its value. Look at ASP/NET authentication and the login controls.
I know the language. I've read a book. - _Madmatt
modified on Sunday, March 21, 2010 6:17 PM