Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New to ASP

Status
Not open for further replies.

gunalan

Technical User
Jun 29, 2004
52
0
0
US
HI,

I would like to know could net resources for ASP using javascript.
Most book or net which i am trying to access regarding
asp using vb script.
give me good resources
thank you
 
Perhaps this may hopefully give you some ideas:

Web Database Concept

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
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 - o W3Schools ASP Tutorial - o Microsoft VBScript Language Reference -
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
and then click on the Tips link to see an example

Also this is interesting:
Address Book Sample
<<
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.
>>

J. Paul Schmidt, Classic ASP Web Designer
Classic ASP Design Tips, ASP Web Database Demo, ASP Bar Chart Tool...
 
You'll probably find more resources doing a search on ASP and JScript (Microsoft's version of Javascript, and technically what is used when you write ASPs in Javascript).

Have a look at thread333-715844 for more info.
 
I have been working with ASP for about a year now and am fairly adept at adding/listing/editing/deleting information dynamically from the web to/from my database(s). More and more, I am being called upon to modify forms that use radio buttons and check boxes. I know this can be done dynamically using a loop in ASP to search through all of the records in a table and create the appropriate radio buttons/check boxes...but am having trouble creating one. Does anyone have a script I can look at?
 
sorry...I entered my text in the wrong location. Please disregard...

GC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top