Ask a Question related to ASP Database, Design and Development.
-
R. Paulson #1
Help VB 2 ASP
Hello I have an Access db app that I made, I want to put in a webpage, how do I go about this, do I use XML .NET ASP? Are there converters out there? The more detailed information the better. I am clueless. thanks.
R. Paulson Guest
-
Bullschmidt #2
Re: Help VB 2 ASP
Perhaps this may hopefully give you some ideas:
Web Database Concept
[url]http://www.bullschmidt.com/concept.asp[/url]
You and others can have access to a database hosted on the Web from any
location that has a browser with an Internet connection.
The Web database concept makes sense if you and your people want to do
work in various locations in or outside the office and still be
"plugged" in.
For example you could have employees enter timesheets or have sales reps
log their contacts. Or perhaps you'd like customers to be able to check
the status of their orders online without having to call the company.
If you want a Web database, typically what would happen is that a
database such as Access or MySQL (basically just consisting of tables)
would be put on the Web.
Then "dynamic" Web pages (such as classic ASP pages which include
VBScript, HTML, and/or JavaScript) would be created acting like the old
desktop database's queries, forms, and reports to access the database -
all hosted on a Web Server.
Dynamic Web pages are similar in many ways to regular HTML pages. But
they are "live" because the user can read from and write to information
in the database. An example where you can login and add, edit, or view
fictional customers and invoices is at
[url]http://www.bullschmidt.com/login.asp[/url]
Not all Web hosts will handle dynamic Web pages but many do. The Web
hosts that can handle ASP pages usually have a Windows 2000 or Windows
2003 operating system running an IIS Web server.
Here are a few good ASP sites:
o ASP101 Samples - [url]http://www.asp101.com/samples[/url]
o W3Schools ASP Tutorial - [url]http://www.w3schools.com/asp[/url]
o Microsoft VBScript Language Reference -
[url]http://msdn.microsoft.com/scripting/default.htm?/scripting/VBScript/doc/[/url]
vbscripttoc.htm
And the following newsgroup is good:
microsoft.public.inetserver.asp.general
Or for a "quick and dirty" generic ASP open source solution to putting
databases on the Web (often works well for the admin area of a Web site)
that just requires setting up a configuration page for each table or
query and uploading the database to the Web as long as there is an
autonumber field in each table (and you'll probably also separately want
to create login capabilities), perhaps try something like this:
GenericDB by Eli Robillard
[url]http://www.genericdb.com[/url] and then click on the Tips link to see an
example
Also this is interesting:
Address Book Sample
[url]http://www.applicationgroup.com/Asp/Address_Book.asp[/url]
<<
Feel free to play with this address site. It is here to help people
understand how to use ASP to display and modify data in a database.
This is very basic and is designed to help those starting with ASP. In
other examples we will get into more advanced techniques.Best regards,>>
J. Paul Schmidt, Classic ASP Web Designer
[url]http://www.Bullschmidt.com[/url]
Classic ASP Design Tips, ASP Web Database Demo, ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest



Reply With Quote

