Updating Access with VB in ASP.NET

  • Thread starter Thread starter Erik T. Nomad
  • Start date Start date
E

Erik T. Nomad

Hey...I'm a little new to all this, but I have an access database on my
server that I'd like to update using VB.NET in an ASP.NET file. What I'm
thinking of is creating a small program in an .aspx file that uses SQL to
make the necessary changes at the click of a button. Is this a roundabout
way to go about things? Does anyone have any resources they can suggest to
help me accomplish it? Thanks.
 
Hi Erik,

There is so much (most is with SQL or MSDE, the difference is that you have
to use OleDb with Access, with some small exceptions, they act the same,
although Access is terrible slow when you compare it that with the two first
mentioned).

Here is some stuff to start with

VB.net Resource kit (holds as well ASPNET and ADONET what you need for
acces)
http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing the resource kit
http://msdn.microsoft.com/vbasic/vbrkit/faq/#installvdir

Another resource for learning is the Quick Starts
http://samples.gotdotnet.com/quickstart/

ASPNet resource kit.
http://msdn.microsoft.com/asp.net/asprk/

I hope this helps a little bit?

Cor
 
Cor Ligthert said:
Hi Erik,

There is so much (most is with SQL or MSDE, the difference is that you have
to use OleDb with Access, with some small exceptions, they act the same,
although Access is terrible slow when you compare it that with the two first
mentioned).

Here is some stuff to start with

VB.net Resource kit (holds as well ASPNET and ADONET what you need for
acces)
http://msdn.microsoft.com/vbasic/vbrkit/default.aspx

And if you have problems installing the resource kit
http://msdn.microsoft.com/vbasic/vbrkit/faq/#installvdir

Another resource for learning is the Quick Starts
http://samples.gotdotnet.com/quickstart/

ASPNet resource kit.
http://msdn.microsoft.com/asp.net/asprk/

I hope this helps a little bit?

Cor,

I'll check it out. Thanks!
 
Back
Top