how to get signed in user profile...urgntplz...
-
i'm creating a login system, when a user login successfully, then open his profile fornt of him soon after login successfully. And could also edit his entries in text fields,which will be replaced with existing entries in the database, i want to create edit link or button front of each text field/dropdownlist or something like this, plz help me in this regard, tell me the article related to it, or whome will answer me plz send me step by step process bcz i'm new in asp.net. Even his step by step processes may be in short hands but should be understandable, but plz in step by step process. lot of Thannnnnnnnnnnnnnnnnnnnnnnnnnnnkkksss for himmmmmmmmm in advance. reehamunir
-
i'm creating a login system, when a user login successfully, then open his profile fornt of him soon after login successfully. And could also edit his entries in text fields,which will be replaced with existing entries in the database, i want to create edit link or button front of each text field/dropdownlist or something like this, plz help me in this regard, tell me the article related to it, or whome will answer me plz send me step by step process bcz i'm new in asp.net. Even his step by step processes may be in short hands but should be understandable, but plz in step by step process. lot of Thannnnnnnnnnnnnnnnnnnnnnnnnnnnkkksss for himmmmmmmmm in advance. reehamunir
Hi there, Since you are new to this stuff ;P, IMO u should try to accomplis the smallest step first, I mean, in this case, firstly u just try to make the login facility (just simply user enters username/password. If success, redirect to a webpage with message "Login Successfull". Otherwise, "Wrong username/password", something like this.) When done this step, move to the next.... Happy coding << >>
-
Hi there, Since you are new to this stuff ;P, IMO u should try to accomplis the smallest step first, I mean, in this case, firstly u just try to make the login facility (just simply user enters username/password. If success, redirect to a webpage with message "Login Successfull". Otherwise, "Wrong username/password", something like this.) When done this step, move to the next.... Happy coding << >>
-
thx again for ur assistance in this regard yes i did it, users are login successfully, now what will be the next step ? waiting for ur response reehanmunir
you are definitely validating username and password against any database.. that means you are already connected to the database.. while validating against database, retreive all the fields that you want to show for editing in the same dataset/datatable.. define a datagrid in your page and set its datasource to the datataset/datatable and then bind it... you can find lot of articles on datagridgirl[^] -----
-
thx again for ur assistance in this regard yes i did it, users are login successfully, now what will be the next step ? waiting for ur response reehanmunir
The next step is to: 1. Fetch the loggined user's data 2. Then display the data on the profile web page instead of displaying the message "Login successfull" in the redirected page << >>