Hi, I used to experiment with making websites with ASP and Dreamweaver back like 5 years ago. I am now developing a website with ASP.NET and Visual Studio 2008.
One thing I used to like about ASP and Dreamweaver (together) was that after a little bit of going through some learning (as I remember), I was quickly able to understand how to create a web page that would show me specific data from a specific user as a single record. Not all the records from a database field, but just the ONE and ONLY record that is associated with the specific user!
This was done by telling the server to only display database content from the userId that was included in the url of the page. For example, at a webpage location of http://localhost/mysite/mypage.asp?userId=423942. You guys know what I'm talking about, I'm sure.
Obviously this same method is still being used today with asp.net.
So, please let me know what am I supposed to do to make this same thing possible with asp.net?