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 421-440 of 654
Working with Master Pages and Basics of Master Pages
Master Pages is great new enhancements in ASP.NET 2.0 and if you haven't heard or use Master Pages, then you might reconsider of using this across all your existing websites. It will save you lots of times in maintaining and editing your websites source code. In old classic ASP, we do not have this features yet. Master Pages are an easy way to provide a template that can be used by any number of ASP.NET pages in your application. In working with Master Pages, you create a master file that is the template referenced by a subpage or content page. Master Pages use .master file extension whereas content pages use .aspx file extension. With MasterPages you can achieve true separation between the markup to lay out your pages and the actual content-specific markup. This makes it easy to apply a consistent look and feel to all pages in a site and makes it a breeze to update the site-wide style.
(0 ratings)
Reviews0
PriceFree
Views746
Learn ASP.NET Tutorial
This ASP.NET tutorial covers the basics of Microsoft ASP.NET. The content covered in this ASP.NET tutorial introduces you to the ASP.NET technology, its history, important terminologies, how to set the ASP.NET environment up on your computer and shows you how to configure your ASP.NET environment and create ASP.NET pages. http://www.visualbuilder. com/aspnet/tutorial/
(0 ratings)
Reviews0
PriceFree
Views724
Using and Understanding Cookies in ASP.NET
This article will explain about cookies and how to use Cookies in your ASP.NET applications. As we all know that cookies is very popular and being used by almost all websites in the world to track user information such as logon details, length of visit, number of visits and etc. A cookie is a small text file that the browser creates and stores on the hard drive of your machine. Cookie is just one or more pieces of information stored as text strings. A Web server sends you a cookie and the browser stores it. The browser then returns the cookie to the server the next time the page is referenced.
(0 ratings)
Reviews0
PriceFree
Views998
XmlDataSource Control
Explains how to use XMLDataSource Control to access and display XML Data Source (e.g. local xml file, or RSS feeds). XML can bypass strong firewalls, it is independent of all platforms and doesn't require special software to interpret.
(0 ratings)
Reviews0
PriceFree
Views1271
Caching Techniques in ASP.NET 2.0
Tutorial explains declarative and programmatic output caching, including new database triggered cache invalidation capability. Performance is the key requirement of any application. One of important techniques which helps in the performance of application is Caching.
(0 ratings)
Reviews0
PriceFree
Views1016
Enabling Gzip and Deflate HTTP Compression in ASP.NET pages
This tutorial will help you setup HTTP Gzip and Deflate compression in your ASP.NET web application. We will make use of an ASP.NET web application life cycle event in Global.asax file to achieve that. The code is very simple to understand.
(0 ratings)
Reviews0
PriceFree
Views1393
Using HttpHandlers and HttpModules in your ASP.NET Websites
In this article I would explain about HttpModules and HttpHandlers and how to use it on your Website. Sometimes, just creating dynamic Web pages with the latest languages and databases just does not give you , the developer enough control over an application. At times, you need to be able to dig deeper and create applications that can interact with the Web Server itself. You want to be able to interact with the low level processes such as how the Web Server processes incoming and outgoing HTTP requests. Before ASP.NET, in order to get this level of control using IIS, you were forced to create ISAPI extensions or filters. This proved to be quite daunting and painful task for many developers because creating ISAPI extensions and filters required knowledge of C/C++ and knowledge of how to create native Win32 DLLs. Thankfully, in .NET world, creating these types of low level applications is really no more difficult than most other tasks you would normally perform.
(0 ratings)
Reviews0
PriceFree
Views817
Encrypting your ViewState in ASP.NET 2.0
In the previous release of ASP.NET, the page developer could turn encryption on and off at the application level through a config setting. When validation was set to 3DES, ViewState was encrypted before being rendered in the page. To reduce the chance of someone intercepting the information stored in the ViewState, it is good design to encrypt the ViewState. You could do this in previous releases of ASP.NET, but the support for encryption has been improved in ASP.NET 2.0, allowing you to set this on a page-by-page basis.
(0 ratings)
Reviews0
PriceFree
Views781
Encrypting Connection Strings in web.config file
Tutorial explains how to protect web.config sensitive informations, like connection strings, usually stored as plain text. Microsoft has provided the capability to encrypt sensitive information in configuration files including connection strings in ASP.NET 2.0. With this new capability you can easily encrypt sections of configuration files which makes your application more secure.
(0 ratings)
Reviews0
PriceFree
Views1557
ASP.NET Configuration System
Explains how to edit configuration files (Web.config) at run time using Configuration API's, Web Site Administration Tool and Web Site Snap-in. ASP.NET Configuration system is used to describe the properties and behaviors of various aspects of ASP.NET applications.
(0 ratings)
Reviews0
PriceFree
Views816
Developing a picture album in ASP.NET
A Photo album is a popular approach to share pictures among friends, members or even the whole world. In this tutorial, we will be looking at how to implement a photo album in ASP.NET 2.0 and MS SQL 2005.
(0 ratings)
Reviews0
PriceFree
Views1794
Bulleted List Server Control in ASP.NET 2.0
BulletedList server control is a new ASP.NET 2.0 feature. In our efforts to display organized data which makes sense to reader, we make use of different server controls in ASP.NET 2.0 to render organized data. Bulleted List control also helps in that. The Bulleted List server control is meant to display a bulleted list of items easily in an ordered or unordered fashion.
(0 ratings)
Reviews0
PriceFree
Views1143
Storing Binary Data to Database by using ASP.NET 2.0
Tutorial explains how to store to database and get back binary data, like images, .pdf or .zip files. There is an option to store this type of data to web server file system. But, there is also an option to store it to database and return it with ASP.NET server code.
(0 ratings)
Reviews0
PriceFree
Views1168
How to use Repeater Control
One of important goals of any application development process is making data presentation richer. ASP.NET 2.0 provides many server controls which render data in different rich formats and styles. Repeater control is one of most popular controls for displaying data in different layouts.
(0 ratings)
Reviews0
PriceFree
Views1207
XML Programming with VB.NET
Extensible Markup Language (XML) is a meta-markup language that provides a format for describing structured data. XML is the universal language for data exchange on the Web. This article gives an idea of improvements and changes to XML classes in .NET Framework 2.0 with sample code in VB.NET.
(0 ratings)
Reviews0
PriceFree
Views1129
Basic of GDI+ and Graphics in ASP.NET
In this article, I will explain about GDI+ in .NET Framework. If you haven't heard about GDI+, then GDI+ is a set of classes in .NET framework that deal with graphics. You can use GDI+ to draw custom drawing on the screen. GDI provides a layer of abstraction, hiding the differences between different video cards.
(0 ratings)
Reviews0
PriceFree
Views755
Working with Directories, Drives and Files in ASP.NET
Many times in your ASP.NET applications, you need to interact with the local file system, directory structures, reading and writing to files. or performing many other tasks. The System.IO namespace in the .NET framework makes working with file system and directories very easy. However there are things you need to keep in mind that is security. When you reading, or writing a file or folders in Web application, you are actually executing on behalf of the users that being assigned to your web application and mostly it is under ASP.NET user or Network Service user. You need to make sure that the user itself has write or read access for the particular file or directory you are working on. In this article, I will list down few important classes in .NET that you need to know in order to manipulate files and folders in ASP.NET application.
(0 ratings)
Reviews0
PriceFree
Views725
Basic Introduction to ADO.NET in ASP.NET
ADO.NET was first introduced in version 1.0 of the .NET Framework and provided an extensive array of features to handle data either live,while connected to the database ,or when disconnected.. With the introduction of ADO.NET 2.0, you can have more features and easier programming model. Some of the newly added features include the capability to to bulk load large quantities of data from varieties of sources, to batch process updates to the database with fewer roundtrips back to the database server, to reuse the same live connection for multiple operations as well as to achieve asynchronous access to the database.
(0 ratings)
Reviews0
PriceFree
Views641
Introducing C# 3 � Part 4
This is the final part of a series on C# 3.0. It covers Linq - Language Integrated Query. It explains what declarative programming is, how Linq fits in with this paradigm and why it is a good thing, before explaining how to write Linq queries using a variety of basic and advanced features. Finally, the architecture of Linq is examined, with some notes on DLinq and XLinq.
(0 ratings)
Reviews0
PriceFree
Views668
Introducing C# 3 � Part 3
This is the third of a four part series on C# 3.0. It covers new features that will help you to build data structures more easily, including object and collection initializers. It then moves on to anonymous types, which are useful in Linq, and how type equivalence works with anonymous types.
(0 ratings)
Reviews0
PriceFree
Views816
Results 421-440 of 654