Hello, I am designing a webform with ASP.net 3.5 and visual studio 2008.
A user logs in to the website page1.aspx using his user id and password, and after authentication he is directed to page2.aspx. In page2.aspx I have to display his first name and last name and depending on who has logged in, I have to populate a dropdown list. Not every user has the same permissions to view information. I am getting this information from the same table as the user id and name. I am binding the dropdown list to the SQL data source as such
<asp:DropDownList ID="DropDownList2" runat="server" Go to the complete details ...