I'm new(er) to asp.net and I'm trying to relate concepts to my ColdFusion background.
So, if I want to reference a specific peice of data from a dataset and add it to a link in CF I would do something like this:
<a href="http://www.someURL.com?ID=<cfoutput>#myDataSource.ID#</cfoutput>">MyLink</a>
How do you do this in asp.net? Isn't there some way I can just do a Response.Write("mySqlDataSource.ID") or something similar?