answersLogoWhite

0

This will hook you up to an Access DB:

User Avatar

Wiki User

18y ago

What else can I help you with?

Continue Learning about Computer Science

How long is the online course that offers ASP training and does it offer certification?

There are different online courses available for ASP (Active Server Pages) training. The online ASP training courses tend to average around six weeks in length, and some do offer Web certification after the course is satisfactorily completed. You will find every online course including ASP will vary depending on the school. and not all will offer certification. The only way to find out is to do a search for online ASP training and then check that the school that is offering it is acreddited and offers certification. You can also use free tutorials in advance to get a basic understanding then take the classes as it will make them easier and get you a better grade. You can also continue you ASP training as new technologies devellop.


Why asp is better than HTML?

ASP is for generating dynamic data driven websites. The data it sends to the user is in the form of HTML. HTML is the markup language which allows your browser to render a webpage into a particular format through the use of CSS. At the end of the day, ASP makes use of HTML to make interactive websites


How does IIS Work with asp files?

IIS (Internet Information Services) is a web server for hosting websites and applications on Windows. When a client requests an ASP file, IIS processes the request by invoking the ASP engine, which interprets the embedded VBScript or JScript code in the file. The server executes the script, interacts with any databases or resources, and generates HTML content, which is then sent back to the client's browser. This dynamic content generation allows for interactive and responsive web applications.


What is the virus cryp krap?

it's a dangerous virus and you can check the link below to know how to clean it :http://threatinfo.trendmicro.com/vinfo/virusencyclo/default5.asp?VName=CRYP_KRAP&VSect=Sn


What type of tablet PC is used in CSI NY?

http://www.tabletkiosk.com/products/Sahara/i400s_pp.asp It's a Sahara tablet. And the C5 from Motion Computing. http://www.motioncomputing.com/products/tablet_pc_c5.asp

Related Questions

How do you search from database using ASP?

There are thee basic steps: Obtain the connection string and open the connection to the database Prepare your query and execute it, retrieving the result into a dataset Close the connection


Can you connnect databases to HTML pages?

Yes; you will need to use PHP or ASP to connect to your database and display its content in an HTML page.


What dose asp stand for?

ASP stands for Active Server Pages.


Full name of asp?

ASP stands for "Active Server Pages"..


How do you make connection string in ASP-net with Microsoft access?

use OLEDB connection string OleDbConnection con=new OleDbConnection("provider=microsoft.jet.oledb.4.0;data Source=[your database name.mdb]");


What does asp stand for?

Active Server Pages


How ASP page is processed with example?

An ASP (Active Server Pages) page is processed on the server side. When a user requests an ASP page, the server executes the embedded script (usually written in VBScript or JScript) and generates HTML content, which is then sent back to the client's browser. For example, if you have an ASP page that queries a database for user information, the server will run the script, fetch the data, and output it as standard HTML for the user to view. This allows for dynamic content generation based on user input or database state.


What is teaching process?

http://www.pacificoaks.edu/pages/440.asp


What does the term index ASP refer to?

index ASP is generally the main page or file for any website operating or using Active Server Pages as a web application framework. This is true of both Classic ASP, ASP 2.0 and ASP 3.0.


What is the expansion of asp?

Active server pages


Is there an easy way to make Apche web server run asp pages?

To run ASP pages on an Apache web server, you can use a module called mod_mono, which allows you to run ASP.NET applications. Alternatively, you can set up a reverse proxy to an IIS server that handles ASP pages. However, native support for classic ASP is limited, so using a dedicated Windows server with IIS is generally more straightforward for ASP applications. For best results, consider migrating your ASP code to a more modern framework if possible.


How do you retrieve data stored in the database into the textarea using ASP?

To retrieve data stored in a database and display it in a textarea using ASP, you can use a server-side script to query the database and fetch the data. Then, you can populate the value of the textarea with the retrieved data by echoing it within the textarea tag during the rendering of the page.