I'm working on our intranet site with VB.NET 2005/ASP.NET
When the site loads VB checks to see who is logged into the network for example: Jdough123. Based on the who is logged into the network VB changes the XML datasource to show different links on the side bar of the web page. This part works.
Well, what I want to do is be able to check that user ID against a query that I have created shows the persons title in the company (Manager, Supervisor, Executive, etc.) Then based on that show the different links.
However, I'm trying to figure out the best way to do this. In access it a simple Dlookup function and I know VS 2008 has a new function called DLINQ, but I'm not using that.
Could I create an invisible drop down list or grid view that pulls in the data I need and then do a string off of that?
"IF NTUSER = "Jdough123" and TITLE = "Manager" then me.xmldatasource.datafile = "Manager.XML" else "Associate.XML"
What is the BEST/Easiest way to accomplish this?
When the site loads VB checks to see who is logged into the network for example: Jdough123. Based on the who is logged into the network VB changes the XML datasource to show different links on the side bar of the web page. This part works.
Well, what I want to do is be able to check that user ID against a query that I have created shows the persons title in the company (Manager, Supervisor, Executive, etc.) Then based on that show the different links.
However, I'm trying to figure out the best way to do this. In access it a simple Dlookup function and I know VS 2008 has a new function called DLINQ, but I'm not using that.
Could I create an invisible drop down list or grid view that pulls in the data I need and then do a string off of that?
"IF NTUSER = "Jdough123" and TITLE = "Manager" then me.xmldatasource.datafile = "Manager.XML" else "Associate.XML"
What is the BEST/Easiest way to accomplish this?