ASP Subcategories |
Creating Multisheet Excel Spreadsheets with Office Web Components (OWC) for XP |
| ASP | Views: 2 | |
| There are a number of ways to create Excel spreadsheets through an ASP page. The simplest way is to simply set the ContentType to the Excel MIME type and send simple HTML; another approach is to use SoftArtisan's ExcelWriter; yet another approach is to u.. |
Object-Oriented Programming for VBScripters - Part 2 |
| ASP | Views: 0 | |
| Still intimidated by .NET? Part 2 explores a few more advanced OOP features: inheritance, interfaces, and finally abstract classes. |
Dynamic Textbox Creation at Runtime |
| ASP | Views: 0 | |
| Normally when you build a form you need to give each form field a unique name. But what if you're doing something like a shopping cart and don't know in advance how many form elements there will be? This sample script illustrates how you can handle just .. |
Transferring the Datagrid Data Between Web Forms |
| ASP | Views: 0 | |
| In classic ASP there are many ways to transfer data between two Web pages: Session variables, QueryString parameters, Cookies, hidden forms, etc. In ASP.NET, however, developers are encouraged to use postback forms so that one particular ASP.NET Web page |
Creating a members area with ASP |
| ASP | Views: 0 | |
| A frequent task for ASP developers is to create a members area style section of a website. This would normally involve registration, a login page, and then access to a section of the site that is only available to registered users. Members areas allow yo.. |
DATABASE CONNECTION |
| ASP | Views: 0 | |
| ASP is a great tool for building dynamic web pages. One of the most basic scripts you need in ASP is the database connection. Here are two examples of database connections |
Send Binary Data from ASP |
| ASP | Views: 0 | |
| Ever wondered how we can send binary data to the client? This tutorial illustrates how to send the contents of an existing file to the client and force a Save As dialog box |
An ASP.NET Rating System |
| ASP | Views: 0 | |
| This article, by Paul Apostolos, examines how to build a ratings system using ASP.NET. When Paul's son was born, he wanted to create a Web site of pictures of his son and allow the visitors to rate each picture on a scale from 1 to 5. After voting, the v.. |
Building ASP.NET User and Server Controls, Part 2 |
| ASP | Views: 0 | |
| Solomon Shaffer explains custom controls, describes the complexities and issues surrounding building such controls, and walks through a useful example |
Object Encapsulation In VBScript |
| ASP | Views: 0 | |
| One of the key concepts of object-oriented programming is that of encapsulation. Simply put, encapsulation is the act of grouping complex functionality into a simple to use interface. For example, the complex electronic and mechanical interfaces of your .. |
Querying data with ADO.Net |
| ASP | Views: 0 | |
| With ADO.Net it has never been easier to parameterize data from a SQL database. This article focuses on retrieving selective data from a SQL database using ADO.Net. There's not much more to say, so let's get started |
How To Fix Web Services Going Though Firewalls |
| ASP | Views: 0 | |
| Ben gives you ideas on what to do when faced with some degree of firewall and/or proxy server as you are trying to get your Web Services to work on your corporate network. He gives you a few suggestions to aid in your development |
All You Need To Know About ADO.NET: Part 1/2 |
| ASP | Views: 0 | |
| Fundamentally, almost all business applications need some type of access to data. In addition, many a time, business components need to interact with each other using XML and XML based Internet services. This is where ADO.NET comes into picture |
How to Build Your Own Web Based ASP Chat System |
| ASP | Views: 0 | |
| Tom Corcotoi expertly guides you through creating your own ASP chat system while explaining the pros and cons of html and java based platforms |
When Session Variables Go Bad |
| ASP | Views: 0 | |
| Bruce Johnson takes a look at pros and cons of using Session variables to maintain state on a web site; and the problems you might hit when using them. |
Building a WYSIWYG HTML Editor Part 2/2 |
| ASP | Views: 0 | |
| In part one of this two part series we took a look at a simple way to create a fully functional browser-based HTML editor with a bit of JavaScript and Internet Explorer’s execCommand function. When I wrote that article I promised a second part in which I |
Form validation is vastly improved in ASP.NET |
| ASP | Views: 0 | |
| All Web development efforts require form validation, but Active Server Page technology hasn't made the task easy. Fortunately, ASP.NET addresses the need with validation controls. See how to put them to good use |
Simulate Server.Execute and Server.Transfer in ASP 2.0 |
| ASP | Views: 2 | |
| If you've worked with both ASP 3.0 and ASP 2.0 you're likely aware that the two versions are nearly identical. Of the few changes between the two is the inclusion of a two new Server object methods: Server.Transfer and Server.Execute. This article, by Fr.. |
From ASP to ASP.NET... Painlessly! |
| ASP | Views: 0 | |
| Moving from classic ASP to ASP.NET isn't always easy. One of our readers has decided to share the process that he's found to work the best when migrating applications |
An Extensive Examination of the DataGrid Web Control: Part 3 |
| ASP | Views: 0 | |
| The DataGrid: it's one of the most useful Web controls available in ASP.NET. In Part 1 we examined the basics; in Part 2 we looked at how to beautify the DataGrid's output using styles and display properties. These two parts showed how to nicely display .. |
|