Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Classic ASP


Related Topics

In the News (Wed 23 Dec 09)

  
  ASP VB and .NET Components for PDF Image and Upload - WebSupergoo
Use it from environments as diverse as ASP.NET, ASP or Windows Forms Applications.
ImageGlue ASP is our Classic ASP/COM offering for older systems.
ABCpdf ASP is our Classic ASP/COM offering for older systems.
www.websupergoo.com /products.htm   (820 words)

  
  Active Server Pages - Wikipedia, the free encyclopedia
Programming ASP websites is made easier by various built-in objects.
The <% %> tags are delimiters which tell ASP to treat anything contained within as ASP code and to act on it.
ASP 1.0 (distributed with IIS 3.0) in December 1996,
en.wikipedia.org /wiki/Active_Server_Pages   (419 words)

  
 Current State of Classic ASP and ASP.NET   (Site not responding. Last check: 2007-11-01)
Classic ASP is very powerful and easy to pick up.
You may ask "but is classic ASP going to be around 5 years from now?" Though you never really know until the new version of windows server ships I say "Hell Yes" it will be.
There are tons of great applications out there in ASP and ASP still is and always will be the easiest scripting language to work with and learn.
www.powerasp.com /content/new/asp-and-aspdotnet.asp   (1420 words)

  
 What is Active Server Pages? - A Word Definition From the Webopedia Computer Dictionary
When a browser requests an ASP, the Web server generates a page with HTML code and sends it back to the browser.
So ASPs are similar to CGI scripts, but they enable Visual Basic programmers to work with familiar tools.
ASP is also short for application service provider
www.webopedia.com /TERM/A/Active_Server_Pages.html   (464 words)

  
 ONDotnet.com -- Learning ASP.NET for the ASP developer - Part 2
The downside about the classic ASP approach is that once you had fixed the bug, you had to go back to your code and remove these statements so that the page could be processed normally.
In classic ASP, the six intrinsic classes, Application, ObjectContext, Request, Response, Server, and Session are the top-level classes.
The classic ASP intrinsic objects have been replaced by the HttpApplicationState, HttpContext, HttpRequest, HttpResponse, HttpServerUtility, and the HttpSessionState classes, respectively.
www.ondotnet.com /pub/a/dotnet/2004/10/25/asp2aspnet_pt2.html   (2973 words)

  
 Comparing West Wind Web Connection and classic ASP + COM - Rick Strahl's WebLog
ASP must reopen data files on every hit – you can’t cache anything in ASP COM objects because objects go away after each hit.
ASP accomplishes this with STA Model (Single Threaded Apartment) COM invocations – that is a thread marshaled interface that invokes a component on a thread and isolates it on that thread to allow multiple components to run separate threads simultaneously.
ASP handles multiple requests by simply letting them all come and be processed up to a maximum amount which is equal to the number of worker threads made available to ASP.
west-wind.com /weblog/posts/1475.aspx   (4814 words)

  
 Feedback: Cannot set breakpoint in classic ASP page
In VS2003 you could debug a classic ASP page by opening the.asp file in the IDE and then setting a breakpoint on a line of script code.
This was an issue with the ASP file editor that has science been fixed.
You have to attach the the classic ASP process.
connect.microsoft.com /VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=103470   (330 words)

  
 Classic ASP Data Grid   (Site not responding. Last check: 2007-11-01)
You must be logged in as a subscriber to read it.
By the time our project is complete we will be able to develop flexible and functional data driven pages by changing just a couple of lines of code.
The code in this article will work with ASP 2 or 3, and later examples require SQL Server.
www.asptoday.com /Content.aspx?id=1485   (193 words)

  
 Mikhail Arkhipov (MSFT)'s WebLog : Classic ASP page template for VS 2005
Improved support for classic asp seems to be a very important topic.
Classic asp templates, snippets, debugging (especially Remote debugging) would make life much easier for thousands of developers.
This example is great for Classic ASP developers who want to add their own ASP templates to Microsoft Visual Studio 2005.
blogs.msdn.com /mikhailarkhipov/archive/2005/06/26/432852.aspx   (664 words)

  
 4GuysFromRolla.com - A Classic ASP Page Caching Object
A common scenario in ASP development is to dynamically create web page content by pulling data from a database.
If you are looking at extending the scalability of an existing ASP application, in most cases upgrading to ASP.NET is not feasible because of the great deal of time you have already invested in developing the ASP Application.
Therefore, we'd ideally like to be able to have an easy to use caching solution for classic ASP that can be simply plugged into existing ASP pages to allow for page-level caching.
www.4guysfromrolla.com /webtech/032002-1.shtml   (1072 words)

  
 Coding Horror: Classic ASP
Bad ASP code was so easy to write and as long as nobody follows best practices regarding security and patching on the server, it will still run, but bringing that code up to current levels of "acceptable" was one of the least favorite tasks I've ever done.
I agree that porting from ASP to ASP.NET is brutally hard, and usually forces a total rewrite unless you want "worst practices" code.
And as Drazen pointed out, the least of those reasons is that ASP is on life support already..
www.codinghorror.com /blog/archives/000144.html   (704 words)

  
 Active Server Pages Articles & Tutorials, Sample Code, Sample Chapters, Events, Books, Jobs, Blogs, Products and Web ...
This book is for VB programmers, with a grasp of ASP and SQL, who want to leverage their skills into producing high quality, low cost e-commerce solutions for small businesses.
ASP is Microsoft's glue technology for providing complex, interactive, data-driven web pages for both inter- and intra-nets.
The Chilkat ASP XML parser is significantly faster and less memory intensive, and the API is much simpler.
www.developerfusion.co.uk /asp   (1769 words)

  
 ASP.NET Up Close > Connective Tissue   (Site not responding. Last check: 2007-11-01)
Classic ASP evolved as a way to more easily develop "dynamic" content—that is, to have the content of your Web site change at runtime.
You can think of classic ASP as one big ISAPI DLL that Microsoft has already written for you.
ASP mixes presentation (HTML) with scripting blocks so that you can control the content coming from an ASP page.
www.informit.com /articles/article.asp?p=24406&seqNum=3   (1069 words)

  
 SkeyMedia » Classic ASP   (Site not responding. Last check: 2007-11-01)
There’s no hope to change it, as it will break the original design and thus the original application that it is supporting.
Classic ASP is just about fazed out at most companies, but there are still plenty of legacy applications that use it.
There is a lot of confusion about AJAX and what it is. Mainly, it is a client-side application that sends data to a back end parser, and thus the back-end processor can be written is anything from asp to cfm to php to old-school perl cgi’s.
www.skeymedia.com /category/programming/classicasp   (245 words)

  
 4GuysFromRolla.com - Print this Page - Comparing Classic ASP to ASP.NET
As developers begin to move to the technology, those who have a long background in classic ASP will likely feel a bit alienated, as the way things are done in an ASP.NET Web page can be confoundingly different than in a classic ASP page.
Hence, if there is ASP code that needs to be executed within the page, it will not be executed in the printer-friendly page.
Note that with classic ASP, we used a separate ASP page to handle the printer-friendly display.
www.4guysfromrolla.com /webtech/030602-1.shtml   (1214 words)

  
 Active Server Pages (ASP): Connecting to SQL Server from Classic ASP
I have a problem trying to establish a connection to a SQL server database from an ASP classic, the web server (windows 2003) and the database server (SQL server 2000 SP3) are in the same machine, the code I use to establish the connection is something like this:
Yes hongjun, SQL server is started and it's using SQL and Windows authentication, as i told before, if I copy the application to another web server it works ok, even if I use the same database server.
Classic ASP has this problem in MANY areas.
www.experts-exchange.com /Web/Web_Languages/ASP/Q_21177138.html   (1180 words)

  
 Classic ASP Framework - Make your Classic ASP code work like in ASP.NET - The Code Project - ASP
Developing in Classic ASP using the same technics as in ASP.NET?.
With the Classic ASP Framework you will be able to structure your ASP pages pretty much the same way you would do it in ASP.NET.
He is quite "curious" and always wants to know how things work and the "why was it done like this or that, how does this works...", and because of this he is always pursuing to improve his skills so he can know the answers to these questions.
www.codeproject.com /asp/ClassicAspFW.asp   (906 words)

  
 ASP Tutorial
At W3Schools you will find complete ASP references about built-in objects and components, and their properties and methods.
Because ASP scripts are executed on the server, you can not view ASP code in a browser, you will only see the output from ASP which is plain HTML.
The ASP Developer Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
www.w3schools.com /asp   (287 words)

  
 ONDotnet.com -- ASP.NET File Uploading
In classic ASP, it's a somewhat involved process, in which you have to extract the content of the uploaded file from raw HTTP request data.
In the end, many ASP programmers resort to a third-party component for file upload.
In classic ASP, you have to open the file yourself and send a number of bytes at a time.
www.ondotnet.com /pub/a/dotnet/2002/04/01/asp.html   (774 words)

  
 ASP-db, Tornado, USIntertech, ASP, ASP.Net, ASPDotNet, Active Server Page, database, ASP code generator, ASP ...
Just pay attention to how many web sites have ".asp" extensions in their url and you'll know how widely used it is. ASP-db is the first Web Database component based on ASP.
Designer is the code generator for Classic ASP-db and TED (Tornado Editor and Designer) is for Tornado.
An Excellence Award plaque was presented to Frank Kwong at this year's ASP Connections convention in Phoenix May 1st.
www.aspdb.com /site   (454 words)

  
 Aprelium Technologies - Adding "Classic" ASP Support
"Classic" ASP support is available only on Windows using a third party commercial product called ActiveHTML from seliSoft.
Note that "Classic" ASP and ASP.NET are different and incompatible technologies.
In the Hosts table, press Configure in the row corresponding to the host to which you want to add "Classic" ASP support.
www.aprelium.com /abyssws/asp.html   (226 words)

  
 ShowUsYour<Blog> : Classic ASP Page Framework
Implications of using VBScript classes in classic ASP applications.
After participating in that thread I was reminded that, a while back I actually wrote an object oriented, event-driven classic ASP Page model which mimics some of the services which are built into the ASP.NET pages - such as Authentication, Users/Identities and Page properties.
Had I continued with classic ASP though, I have no doubt that I would have needed to do a similar thing to what you've done because, as you say,.NET taught us the importance of being able to rapidly develop from a stable base of controls and services.
weblogs.asp.net /dneimke/archive/2004/07/28/199217.aspx   (976 words)

  
 Automate Your Classic ASP Web Forms
Automating portions of your code can provide a huge time savings, but automated code is often highly resistant to accomodating simple, but exceptional, changes.
It becomes increasingly difficult to ensure that developers perform the data-passing operations correctly, matching the form field control names to the label names for the data on the preview page, and eventually, to the correct columns in the database.
Classic ASP, standard HTML form controls, an ASP-enabled Web server for building and troubleshooting your ASP code, and a SQL-aware database.
www.devx.com /asp/Article/17745   (935 words)

  
 CodeToad - Caching With ASP.Net.   (Site not responding. Last check: 2007-11-01)
In Classic ASP 3.0, we did not have any thing as powerful as ASP.Net Caching API through which we can cache whole pages (output caching), user controls (fragment caching) and perform data caching.
In Classic ASP, we had cookies, sessions and application objects to store persistent information.
Developers have to write a lot of code when caching data in any classic ASP object.
www.codetoad.com /asp.net_CachingWithASPNet.asp   (980 words)

  
 ASP - Classic ASP 1 Tutorials
ASP Web developers write their code into files tagged with the extension.asp (for example, foo.asp).
ASP files often contain a mixture of static HTML and executable sections (usually written in a scripting language) that emit output at runtime.
This is an ASP page.” Then when ASP.DLL encountered the funny-looking execution tags (<% and %>), it executed those blocks by running them through a JavaScript parser.
www.brainbell.com /tutorials/ASP/Classic_ASP_1.html   (644 words)

  
 ASP - The ASP.NET Pipeline Tutorials
As soon as ASP.NET 1.0 was released, it offered a huge improvement over classic ASP by introducing well-defined pipelines.
Classic ASP was patched together from several disparate components (IIS, the Web Application Manager, and the ASP ISAPI DLL).
If you wanted to write code to execute during processing, it had to occur within a COM object implementing IDispatch (severely limiting the available types of data you could use and negatively affecting performance).
www.brainbell.com /tutorials/ASP/The_ASP.NET_Pipeline.html   (1122 words)

  
 XDO: An XML Engine Class for Classic ASP   (Site not responding. Last check: 2007-11-01)
In classic ASP, Microsoft has provided the pieces for developers to take advantage of XML in different ways.
It was not until Transforming ADO Recordsets to XML with XSLT that we begin to see that we can piece the tools available in the classic ASP platform to create a reusable, extensible, and flexible framework with XML as the foundation.
Execution of the typical ASP page in this framework involves adding the class references to the page through #include directives, validating the request, creating an instance of the business object engine, CustomerXMLEngine, calling the appropriate business object method, transforming the data with appropriate XSL, and returning the resulting HTML interface.
www.devarticles.com /c/a/ASP/XDO-An-XML-Engine-Class-for-Classic-ASP   (1879 words)

  
 Best Practices for Using ADO in Classic ASP Application Development   (Site not responding. Last check: 2007-11-01)
Article from the Classic ASP library, published 27 Nov 2002
The intent of this article is to determine best practices for using ADO in classic ASP application development.
Christopher Schmidt will present various data access methods of ADO and compare these methods based on performance and speed of execution.
www.asptoday.com /Content.aspx?id=2011   (178 words)

  
 Classic ASP Data Grid Part 2 – Database Editing   (Site not responding. Last check: 2007-11-01)
Classic ASP Data Grid Part 2 – Database Editing
Article from the Classic ASP library, published 28 Oct 2002
In Chris Garret's previous article he looked at how we can create reusable code to display the results of database queries.
www.asptoday.com /content.aspx?id=1957   (255 words)

  
 Classic ASP with VWD: why is JScript default language? - MSDN Forums
Classic ASP with VWD: why is JScript default language?
Thankfully, I can use Visual Web Developer to edit Classic ASP scripts.
The focus of VWD has been on ASP.Net 2.0 functionality, not classic ASP.
forums.microsoft.com /msdn/ShowPost.aspx?PostID=84364   (458 words)

  
 More ASP Articles
Many classic ASP applications exist side-by-side with newer ASP.NET applications, sometimes leading to a need to transfer or share information between the two.
When the number of ASP requests exceeds the number of available threads, you'll see a dramatic slowdown in response time.
ASP programmers frequently develop Web apps that rely on displaying data within forms linked to a back-end database.
www.devx.com /asp/Door/10590   (812 words)

  
 [No title]
The 'Classic ASP' category contains all of the classic ASP related lists.
This list is where all ADO and classic ASP database related questions belong.
This list is where CDO, SMTP, and all other classic ASP email questions belong.
aspadvice.com /lists/category.aspx?c=18   (122 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.