Top Rated Scripts | ASP.NET | Tutorials & Tips
What is Microsoft intermediate language (MSIL)?
posted bychetu_akarteinTutorials & Tips
Common Intermediate Language (CIL) (formerly called Microsoft Intermediate Language or MSIL) is the lowest-level human-readable programming language in the Common Language Infrastructure and in the .NET Framework. Languages which target the .NET Framework compile to CIL, which is assembled into bytecode. CIL resembles an object-oriented assembly language, and is entirely stack-based. It is executed by a virtual machine. The primary .NET languages are C#, Visual Basic .NET, C++/CLI, and J#.
Reviews0
PriceFree
Views1226
Beginning ASP.NET
posted bysuper3boyinTutorials & Tips
ASP.NET is Microsoft�s extension to HTML. It requires an ASP.NET compatible web server. Such as, Abyss or IIS (Internet Information Services from Microsoft). There are however plug-ins for Apache Web Server also. Before you continue you will need to know VB.NET which is required for the scripting part of the tutorial.
You don�t necessarily need a compiler to build an ASP.NET script. Any text editor will work. Let�s start by building or first aspx file. Create a new text document in your favorite text editor. Call it default.aspx. Now lets jump in, shall we?
Reviews0
PriceFree
Views1108
Tracking Referring Domains and URLs to our Website.
posted byfaisalinTutorials & Tips
Part 2 of a Multipart Series - In this step-by-step tutorial we will learn how to track referring domains and URLs to our website. Will also revisit the stuff we learned in part1; how to track unique users and page views. The source code is explained in detail and is available for download.
Reviews0
PriceFree
Views909
Working with ASP.NET database
posted bypixeldigestinTutorials & Tips
In this tutorial I will teach you how using Dreamweaver 8 and its ASP.NET function to display information stored in a database you created.
Reviews0
PriceFree
Views1104
Getting Started with AJAX
posted byhandy01inTutorials & Tips
AJAX stands for "Asynchronous JavaScript and XML." It is a technology that facilitates the development of responsive web applications. Responsive means that you can have your data refreshed without the need of full page postback which can significantly reduced bandwidth usage and faster performance.
AJAX is a "cross-platform" technology and can be used across various operating systems, computer architectures and different web browsers as it is based on XML and JavaScript that are open standards. PHP, ASP.NET,ASP,JSP, Cold fusion all can integrate AJAX library into their code easily.
But to use AJAX library it is not that simple and sometimes it is quite hard to code, therefore Mcrosoft has create their own set of AJAX library and named it as ATLAS. You need to download Microsoft AJAX library before you can start coding your Ajax applications.
URL For downloading latest AJAX library is here
Reviews0
PriceFree
Views1090
Understanding Session Object in ASP.NET 2.0
posted byhandy01inTutorials & Tips
In this article, I would like to share and explain about Session objects in ASP.NET 2.0. How it is used and what new features has been introduced. I will also list out all the type of Session objects that you can use and the best practices for every Session objects type.
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.
Reviews0
PriceFree
Views1122
Using NHibernate and Log4Net in ASP.NET 2.0 applications
posted byBeansoftwareinTutorials & Tips
Hibernate and Log4J are a de-facto standard of ORM (Object-relational mapping) and logging (respectively) in Java world. That's why both were ported to .NET runtime environment.
NHibernate is ORM solution and is intended for transparent binding .NET classes to database tables.
Log4Net is logging framework which is useful for tracking errors in application and can write logs either to database table or flat files.
Reviews0
PriceFree
Views1376
File Upload & Compression in ASP.Net
posted byBeansoftwareinTutorials & Tips
This article will show you how to upload a file to the web server and compress it using the compression methods provided in .Net. I will use the open source compression method to compress to a .gz file. The method is available in System.IO.Compression.
Reviews0
PriceFree
Views1572
CAPTCHA - prevent bots and automatic submissions in ASP.NET
posted byBeansoftwareinTutorials & Tips
In this article I will explain the use of CAPTCHA and provide a sample class that you can use in your projects. So, what is CAPTCHA? Standing for "Completely Automated Public Turing test to tell Computers and Humans Apart", A CAPTCHA is a program that can generate and grade tests that most humans can pass, but current computer programs can't pass.
Reviews0
PriceFree
Views1321
Visitor Informations From Request.ServerVariables Collection
posted byBeansoftwareinTutorials & Tips
Tutorial explains few methods to know more informations about your web site visitors.
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.
Reviews0
PriceFree
Views1001
Security Features in ASP.NET 2.0
posted byBeansoftwareinTutorials & Tips
Tutorial covers number of new features and tools to secure ASP.NET applications.
The authentication and authorization of users and resistance against the malicious attacks are important tasks in web applications.
Reviews0
PriceFree
Views1036
Delegates and Events in C#
posted byhandy01inTutorials & Tips
What makes them special is that unlike the C function pointer, the .NET delegate is type safe. Delegates exists for situations in which you want to pass methods arounds to other methods. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. As a .NET developer you will be using delegates and events extensively, especially when developing the Windows Forms applications.
Reviews0
PriceFree
Views844
Improve your ASP.NET Site performance with Caching
posted byhandy01inTutorials & Tips
Caching is the process of storing frequently used data on the server to fulfill subsequent requests.You will discover that grabbing data or objects from memory is much faster than recreating the web pages or items contained in them from scratch.
A Proper use and fine tune of caching approach of caching will result on better performance and scalability of your site. However improper use of caching will actually slow down and consume lots of your server performance and memory usage.
Good candidate to use caching is if you have infrequent chance of data or static content of web page.
Reviews0
PriceFree
Views679
Creating Windows Services in .NET
posted byhandy01inTutorials & Tips
This article will guide you on creating a simple WindowsService. WindowsServices are applications that can be automatically started when the operating system boots. They can run without having an interactive user logged on the system. You can configure a Windows Service to be run from a specially configured user account or from the system user account.
Reviews0
PriceFree
Views700
Web Site Navigation in ASP.NET 2.0
posted byBeansoftwareinTutorials & Tips
Explains how to give consistent ways for the users to navigate the website.
Web applications that you develop will have multiple pages interconnected with each other in some fashion. You need to have a navigation system in place which can help the end user to successfully work through your application.
Reviews0
PriceFree
Views884
Introduction to AJAX and Microsoft ASP.NET AJAX Framework
posted byBeansoftwareinTutorials & Tips
Explains how to use AJAX to make more dynamic and responsive ASP.NET Web applications, which ultimately results in rich user experience.
AJAX, an acronym for Asynchronous JavaScript And XML is a group of technologies like Java Script, XML, CSS, DOM, HTML and DHTML.
Reviews0
PriceFree
Views1081
Cross Page posting in ASP.NET 2.0
posted byBeansoftwareinTutorials & Tips
Tutorial explains how to post data between web forms, using new Cross Page posting functionality.
Keeping in view limitations in ASP.NET 1.x, Microsoft has reinstated Cross Page posting feature in ASP.NET 2.0. Many of us might not be aware of Cross Page posting feature in classic ASP.
Reviews0
PriceFree
Views1068
Client Side Script Debugging in ASP.NET
posted byBeansoftwareinTutorials & Tips
Tutorial explains how to use Client Side Debugger, to simplify the debugging process of javascript code in ASP.NET web application.
Every one of us is well aware of problems posed when debugging client side script code. This article talks about various new techniques and troubleshooting tips that help debug client side script code efficiently in Visual studio 2005.
Reviews0
PriceFree
Views1039
Data Source Controls in ASP.NET 2.0
posted byBeansoftwareinTutorials & Tips
Tutorial introduces a number of new Web controls designed for accessing and modifying data in ASP.NET 2.0.
You can perform all common database related tasks like displaying, editing and updating the data with minimum effort. ASP.NET 2.0 has got some smart and intelligent new data source controls which can even manipulate specialized data sources like XML files.
Reviews0
PriceFree
Views989
Tracking and Displaying Real-time Visitor Time Zones in a Chart
posted byfaisalinTutorials & Tips
Part 4 of a Multipart Series - In this tutorial we will learn how to add real-time visitor time zones tracking to our website. We will also create two (2) time zone charts for our website which will allow us to view where all of our visitors have mostly come from, and also to see in real-time, current active users' time zones. Click the link to see the sample charts and images.
Reviews0
PriceFree
Views1138