Send a suggestion!

We're building a brand new version of the site, and we'd love to hear your ideas

Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 25,991 times

Contents

Related Categories

Implementing ODBC in ASP .NET - Conclusion

jscroft

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.

Jason Williscroft is a former Marine and naval officer, and a graduate of the United States Naval Academy, where he studied Systems Engineering. He is currently General Manager of HotQuant, LLC, an engineering & technology consulting company located in the Chicago area.

Comments

  • pageload

    Posted by jjoshua on 11 Sep 2003

    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 outp...