| Home : Programming : ASP.NET |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
|
|
Introduction For those of you who read my last article, \"Flash and ASP Integration,\" I really hope you enjoyed it and that it helped you to further your knowledge of dynamic Flash. A lot of you responded, asking how to display data from multiple recordsets in a Flash movie, and I promised you another article. So, without further ado, here we go! The Concept You have probably dabbled in this before, and most likely, it brought about some frustration....
Updated: 05/30/2005
|
|
|
Introduction This article is an abridged version a chapter, by Alex Homer, in a new book called \'Pro ASP Techniques for Webmasters\' from Wrox Press (ISBN 1861001797). The article discusses how ASP can be used in conjunction with various other techniques to provide feedback about your site, and to prevent errors. The book as a whole covers a whole host of issues ranging from basic site navigation and...
Updated: 05/30/2005
|
|
|
Introduction One of our visitors decided they would give something back. It\'s not much, but here are a couple of ASP functions for XML Data transfer that they found to be very useful. Two functions that allow for XML Data transfer getXMLField Function getXMLField(strFieldName) Dim objDom Dim objRoot Dim objField Dim strFile Dim PageNo PageNo = Request.QueryString(\"page\") If PageNo = \"\" Then PageNo = \"1\" End If \'Page Number strFile = \"Page\" & PageNo & \".xml\"...
Updated: 05/30/2005
|
|
|
Before starting, let\'s shed some light on the SQL Distributed Management Objects (SQL-DMO). ASP gets its functionality by using server components. In ASP we can combine scripts, HTML, and reusable server components to create scalable Web applications. These server-side ActiveX components can be developed in many languages, such as VC++, Java, and Visual Basic (VB). click here to download...
Updated: 05/30/2005
|
|
|
If you\'ve ever worked on an ASP page with a lot of submit buttons, you know that sometimes it can take some tricky coding to determine what button the user pressed when the page is posted to the server. The problem is that there are only two ways to identify a button with the Request object: by the value attribute (i.e., the text that appears inside the button), and by the name attribute. The former method is useful if you have several buttons...
Updated: 05/30/2005
|
|
|
Here is a simple example of running an Access Macro via ASP. Much of this code is based on the 4Guys series of article on running an Access Report via ASP here. http://www.4guysfromrolla.com/webtech/042600-1.shtml Now, I consider that source duly credited, though *definitely* still worth a read. Probably indispensible, if you haven\'t yet, and ever intend on getting *this* script to work. It\'s got lots of insight into setting the necessary permissions, which...
Updated: 05/30/2005
|
|
|
Introduction This example assumes that you are familiar with ASP, XML and HTML 4.0. Search XML files to update or delete records This article is the final installment in a series of articles on manipulating XML data with ASP. Before proceding with this article, I recommend that you read Saving HTML Form Data to XML , Editing XML with XSL and ASP , and Appending to XML with ASP . The first thing that I would recommend before proceeding would be to download the files...
Updated: 05/30/2005
|
|
|
I developed an application that worked fine in development and single user testing, but when multiple users starting using the application, I ran into some cases when users got timeout errors from ASP while the code was trying to execute a long SQL stored procedure. This long stored procedure uses a transaction because it involves a lot of updates, inserts, and deletes, and if any statement fails, then all of the statements must be rolled back to the state that...
Updated: 05/30/2005
|
|
|
Introduction Many articles detail how to create \"independent\" HTML select objects with ASP. However, I have not found a good article about creating \"dependent\" HMTL select objects with ASP. This article details how to leverage several technologies -- both client- and server-side -- to create dependent HTML select objects with ASP. In this article, I will use the following technologies: Active Server...
Updated: 05/30/2005
|
|
|
Scott Mitchell presents a case study of ASPFAQs.com, followed by an overview of skmFAQs.NET, an ASP.NET 1.x application for allowing a defined group of individuals to publish information online.
Updated: 05/30/2005
|
|
|