Want to hire a development team?
Search Filter
Search Filter
Sort Listings By
Show Only
By Customer Review
Licence Type

Top Rated Scripts | ASP.NET | Tutorials & Tips

Results 1-20 of 654
Creating multilingual websites - Part 1
Extend the existing globalization capabilities of .Net to create flexible and powerful multilgual web sites. First create a custom ResourceManager and then create custom localized-capable server controls to easily deploy multilingual functionality.
(3 ratings)
Reviews0
PriceFree
Views1465
Proper source code management of your Visual Studio 2003 solutions
This article describes procedures to easily and properly create and maintain your VS.Net 2003 projects under your source control system. This is especially important for ASP.Net web applications as many developers have difficulty organizing them under Visual Source Safe.
(3 ratings)
Reviews0
PriceFree
Views3649
Web Parts and Personalization
This video shows how to use the new Web Parts and Personalization features of ASP.NET 2.0 and the designer support provided by Visual Web Developer 2005 Express Edition to build customizable web pages whose content and layout can be modified by the user. See how Web Parts enable the user to add new content to a page on-the-fly and restructure the page in the browser using drag-and-drop.
(3 ratings)
Reviews0
PriceFree
Views1147
Managing Membership and Roles in ASP.NET 2.0
In this tutorial you will learn about Anonymous Users, Managing Membership and Roles, The Programming Interface - Properties and Methods, Setting up the Membership, The Membership Provider, The ProviderBase Class, The MembershipProviderBase Class, Managing Roles, The Role Class and The Role Provider.
(3 ratings)
Reviews0
PriceFree
Views1466
Membership, profile and roles in ASP.NET 2.0
This serie of articles explains the membership provider system in ASP.NET 2.0, how to make it work against SQL Server 2000, how to tweak the CreateUserWizard to require email verification when new accounts are created etc. As of this moment there are 6 articles, all with explaining sourcecode.
(3 ratings)
Reviews0
PriceFree
Views1243
Master Pages in ASP.Net 2.0 - An Advanced Look
Advanced use of Master Pages in ASP.NET 2.0 to achieve consistent look and feel of your web site. Master Pages enables us to apply the same page layout to multiple pages in a Web Application.
(3 ratings)
Reviews0
PriceFree
Views1917
View State in ASP.NET and understand how it works
In this article, I would explain about View State in ASP.NET, What is it and how it works. Have you ever wondered why coding in ASP.NET is so much fun, easy, and less coding time compared to Classic ASP or any other languages such as PHP, JSP ?. One of the reason behind this was ViewState. 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.
(3 ratings)
Reviews0
PriceFree
Views857
Using Stored Procedures with MSSQL and ASP.NET 2.0
If you haven't used MSSQL stored procedures before with SQL Server and in your ASP.NET 2.0 pages then you need to read this article. In this article I will list down basic questions like the following :what is a stored procedure? How can I create a stored procedure? How can I use it from within my ASP.NET 2.0 web pages? And how can I return an output parameter value to my ASP.NET web page? A stored procedure is a script of SQL code that is stored in your database under a given name. The SQL code for the stored procedure may contain programming logic (using T-SQL IF and CASE statements for example) and SELECT, INSERT, UPDATE or DELETE statements as well. There are many benefits using stored procedures instead of writing pure SQL code. 1. Reduce Network Usage between WebServer and Database Server. 2. Code Reuse. 3. Faster in performance . 4. Enhance Security as you can only give your user execute permission on your stored procedure.
(3 ratings)
Reviews0
PriceFree
Views1188
Basic Introduction about MSMQ in .NET Framework
Message Queuing or what you can call as MSMQ itself is an asynchronous programming. This is because the clients does not wait for the server to read the data sent to it. But there is a difference between the MSMQ itself and the asynchronous programming. In MSMQ world, all the sender and recipient transaction can be occur in disconnected and connected method, while the asynchronous programming, the transaction can only occur in connected mode. Message Queuing is kind of email for application to application communication. But MSMQ has lots more features to offer, such as guaranteed delivery ,transactions,confirmatio ns, express mode using memory and so on. With MSMQ you can send,receive, and route messages in a connected or disconnected environment.
(3 ratings)
Reviews0
PriceFree
Views1198
Web Parts in ASP.NET
Many websites often organize their content into modules that allows for personalization. In ASP.NET 1.1, you needed to build your own personalization framework. This article discuss how you can do it with Web Parts, new feature introduced in ASP.NET 2.0.
(3 ratings)
Reviews0
PriceFree
Views1032
Data Paging in ASP.NET
This tutorial explains what is and why we need data paging and how to implement it in ASP.NET web application with simple GridView paging, custom GridView paging or paging by using DataPager class.
(3 ratings)
Reviews0
PriceFree
Views645
Developing a Shopping Cart in ASP.NET
In this tutorial we are going to develop a simple shopping cart consisting of two pages, an order page, where your user will be able to check the available merchandise and order the same and the second is a cart page, where the selected items will be shown in the cart.
(3 ratings)
Reviews0
PriceFree
Views1706
ASP .NET 2.0 Framework Tools
In order to facilitate ease of development and deployment of applications, the .NET framework provides the user with a number of tools. All these tools can be run from the command line with the exception of the Assembly Cache Viewer (Shfusion.dll) and the Microsoft CLR Debugger (DbgCLR.exe). In order to ensure that these tools function optimally the user has to set the Path, Include and Lib environment variables by running SDKVars.bat in the /v.2.0/Bin directory and executing it in the command shell.
(1 ratings)
Reviews1
PriceFree
Views2017
Optimization with server controls, application settings & coding practices
Explains different techniques of ASP.NET WebApplication speed optimizations regarding to use of: - page and server controls, - web application settings - best coding practices.
(1 ratings)
Reviews1
PriceFree
Views1304
SQL Server Reporting Services tutorial
SQL Server Reporting Services (SSRS) is a server-based report generation software system from Microsoft. SSRS provides a full range of ready-to-use tools and services to help you create, deploy, and manage reports. With Reporting Services, you can create interactive, tabular, graphical, or free-form reports from relational, multidimensional, or XML-based data sources. You can publish reports, schedule report processing, or access reports on-demand. Reporting Services also enables you to create ad hoc reports based on predefined models, and to interactively explore data within the model. Tutorial presents Reporting Services introduction. Find out how to design, develop and deploy reports.
(1 ratings)
Reviews1
PriceFree
Views586
Multi page forms with MultiView control in ASP.NET 2.0
Sometimes we decide to separate process of form filling into several steps (pages). In past at using old ASP, we should solve this problem for example saving entered data into database table after each step. ASP.NET 2.0 offers more elegant solution where we can first fill multi page form completely and after store all entered data in table in database.
(6 ratings)
Reviews0
PriceFree
Views2224
How to create ProgressBar user control
The user should be informed of percentage of some task completed. This article discuss about the custom user control to create a smooth, incrementing ProgressBar control. It's typical user control which you can include in any of asp.net web application. This user control is a light weight which is built using a HTML table.
(10 ratings)
Reviews1
PriceFree
Views2384
Personalization: User Profiles and Themes in ASP.NET 2.0
ASP.NET 2.0 Free Training : Personalization: User Profiles and Themes - In this tutorial you will learn about Personalization - User Profiles and Themes, Inbuilt providers in ASP.NET 2.0 and also Create and execute a Shopping cart application with Personalization features. Surfers would love to see on the website the content which is customized to their needs. ASP.NET offers a personalization feature which enables users to do just that.
(6 ratings)
Reviews0
PriceFree
Views2745
ASP.NET HOW DO I Video Series: Data
This video illustrates how simple it is to create data-driven web sites using Visual Web Developer 2005 Express Edition, ASP.NET 2.0, and SQL Server 2005 Express Edition. See the integrated data editing support provided by Visual Web Developer that simplifies database creation and population using the Database Explorer and DataSet Designer. Explore how easy it is to create a master-details view with support for filtering, sorting, paging, and editing with no code using the DropDownList, GridView, DetailsView, and ObjectDataSource controls.
(6 ratings)
Reviews0
PriceFree
Views1297
Creating Custom Configurations
ASP.Net's introduction of the web.config file went a long way to filling the configuration hole we had to deal with in classic ASP. We actually went from having very little (global.asa was the closest thing) to a well-structured, change on the fly XML file. For the most part, the web.config file does the trick fine. However there are some limitations and constraints with using it, which you are probably already aware of. What you might not know is how easy is it to surmount those issues by creating a far more flexible alternative.
(3 ratings)
Reviews0
PriceFree
Views1307
Results 1-20 of 654