Library tutorials & articles
Implementing ODBC in ASP .NET
Conclusion
Where to go from here? Once the Dataset object is set up as shown above, anything goes. Typically, the next step will be to fill the Dataset using the appropriate Data Adapter's Fill method, like this:
odaUser.Fill(this.userData);
The .NET framework will do all the heavy lifting involved in maintaining the appropriate connections and ensuring that updates and other operations proceed as required. When HotQuant migrates its website to a SQL Server back end, this is the only code that need change in order to maintain the functionality of the site. This is the real beauty of the multiple levels of abstraction the .NET Framework interjects between code and data.
As always, HotQuant welcomes any comments or suggestions. E-mail is best; we make every effort to respond to all inquiries.
Related articles
Related discussion
-
Using FedEx Web Service to Calculcate Shipping Cost
by bhora123 (4 replies)
-
Very Urgent regarding deleting the images from a folder
by rameshbandi (2 replies)
-
Dynamically Generating PDFs in .NET
by nike12 (10 replies)
-
New style of Javascript used in extenders.
by mittalpa (0 replies)
-
Not able to launch the web application
by NaseemAhmed (0 replies)
Related podcasts
-
StackOverflow uses ASP.NET MVC - Jeff Atwood and his technical team
Scott chats with Jeff Atwood of CodingHorror.com and most recently, StackOverflow.com. Jeff and Joel Spolsky and their technical team have created a new class of application using ASP.NET MVC. What works, what doesn't, and how did it all go down?
i am a new user for ASP.NET.
i created a webform.aspx, using the html code i had created
a textbox and a button. and write the code in *.vb, then try to
run the webform.aspx i donot see any output or atleast the
tools. once i go into the webform.aspx i cannot see the code but i can
have the controls. why this could happen?
thanks.
This thread is for discussions of Implementing ODBC in ASP .NET.