Browse a Listing
Top > ASP.NET > Tips and Tutorials
Popular Tags
Free Script links
Security is an important attribute of any ASP.NET application. The authentication and authorization of users and resistance against the malicious attacks are important tasks in web applications. In ASP.NET 1.x introduced new authentication service called Forms-based authentication which involves authenticating users and redirecting unauthenticated users again to Login page.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 29, 2007 Hits: 1 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
The ServerVariables collection retrieves the values of predetermined environment variables and request header information. If you've ever wondered how to get your website visitor's name, or their IP address, or the referrer address, then look no more. Request.ServerVariables is almost all you need.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 29, 2007 Hits: 7 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Express products are:
Visual Web Developer 2005 Express Edition
Visual Basic 2005 Express Edition
Visual C# 2005 Express Edition
Visual C++ 2005 Express Edition
Visual J# 2005 Express Edition
SQL Server 2005 Express Edition
With Express Editions you will be able to learn how to program using a lightweight streamlined environment with built-in tutorial contents, and evaluate the .NET framework for Windows and Web development. So, you can think of it as a step towards using the full professional editions.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Mar 30, 2007 Hits: 18 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
This tutorial will explain how to build a shopping list using ASP.NET 2.0 with MS SQL database. Based on this article, some cool technical stuff in Visual Web Developer will be used to facilitate our work.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Apr 5, 2007 Hits: 5 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Learn how using Dreamweaver 8 and its ASP.NET function to display information stored in a database you created. The database and image files needed for this tutorial will be available to you which will make it very easy to follow.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Jul 25, 2007 Hits: 9 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Sending Email in .NET 2.0 is quite easy and straight forward and you can send Email with just five lines of code. In .NET 2.0, Sending Email library in ASP.NET 2.0 is called System.Net.Mail.SmtpClient library. Therefore your code need to Import System.Net.Mail or Using System.Net.Mail
in your code.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 1, 2007 Hits: 28 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Member Reviews
Visitor Ratings
Google PR
Very often web reports needs input parameters. For example, this can be period of report (i.e. start date and end date). Hopefully we all have built-in calendars for this. But what to do when we need to select just month and year for our report?
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 6, 2007 Hits: 13 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
In classic ASP, the Session object was held in process (as was everything) to the IIS process and therefore any crash to the IIS or apps pool being reset will cause the whole Session object being resetted. Hence this will make the Session objects not reliable at all and cannot be used to stored important data especially if your website is dealing with client login information or e-commerce type of website. In ASP.NET 2.0, new features has been introduced to make the Session objects more reliable and robust.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 6, 2007 Hits: 3 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Every Control in ASP.NET comes with ViewState enabled by default and with the power of ViewState, all your control can remember its values after page post back. ViewState can help you minimize your coding downtime however it has its own pros and cons. Read this article, and you can understand how to minimize your page ViewState data and improve your site performance. You can see the values of ViewState easily by viewing the source of aspx page. You should be able to see that there is hidden values called ViewState.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Sep 6, 2007 Hits: 11 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR