Asp .Net

ASP .Net First application

Installation of IIS Server:    The first step is to test the installation of IIS and learn how to access web pages on the local computer. To do…

More..

Working with Post back in ASP .Net

Introduction to ASP .Net Post back:    Programming model in old ASP for using POST method in form is to post the values of a Form to a…

More..

ASP .Net Sample Application

   This article looks at some of the basics of ASP .Net with a small sample program which writes "Hello World" in the browser. ASP .Net Class…

More..

Code behind sample in Asp .Net

   This article explains how to use code behind model while programming in asp .net. This feature in asp .net enables us to separate the user…

More..

DropDownList in ASP .Net

   A DropDownList is also commonly known as combo box. It can contain multiple data members, but unlike a normal list box the users can choose only…

More..

ASP .Net Tips

I'm Going to explain now on some Control tip and tricks which will help and increase the speed of the webpages. 1.Smart navigation Smart…

More..

Internals of ASP .Net Compilation and Execution

   The ASP .Net is proved to be a worth while time spent by programmers to create applications, by providing a very rich Framework Class Library…

More..

Creating a simple mobile application – Article by John

Introduction: Developing mobile applications has never been easier than before. With the advent of Microsoft’s .NET technology, we are given a…

More..

Caching in Asp .net by oraclequest

Caching is an important part of web technology. The success of any web application is based on two major factors, Security and web applications…

More..

Forms Authentication in Asp.net by azamsharp

Introduction: Security is one of the most important component of any application. Security is even more important when you are making a web…

More..

Localizing ASP .Net Pages

If you plan on distributing your application to an international audience, there are a number of things you'll need to keep in mind during the design…

More..

IIS Metabase and programmatic administration in C# by ibrahimuludag

Introduction System.DirectoryServices namespace can be used to access Internet Information Service(IIS). You can create, delete and change the…

More..

Asp .net Web.config Configuration File by azamsharp

What is Web.Config File? Web.config file, as it sounds like is a configuration file for the Asp .net web application. An Asp .net application has…

More..

Creating a Web User Control in C#

Web User control or the .ascx file in asp .net is a replacement for the include file feature in ASP. It actually is a positive evolution from the asp…

More..

Using RSS feeds in asp .net and C# by azamsharp

Introduction: RSS stands for (Really Simple Syndication). Basically RSS feeds are xml files which are provided by many websites so you can view…

More..

Exception handling with C# in ASP .Net by oraclequest

Exception handling is an in built mechanism in .NET framework to detect and handle run time errors. Exceptions are defined as anomalies that occur…

More..

Securing connection strings in ASP .Net by azamsharp

Introduction: In one of the previous articles we saw that we can use the web.config file to save our connection string. We also talked about the…

More..

Image generation from string in asp .net by ra00l

Introduction This article introduces you to creating custom bitmaps from an input string. The code for this article is written in C# and ASP .NET,…

More..

custom Email control in asp .net using C# by azamsharp

Introduction: We all have used Web Server Controls like datagrid, textboxes, buttons and calendars. But have you ever thought of making your own…

More..

Creating user controls in ASP .Net by azamsharp

Introduction: User controls is a new feature that is added in Asp.net. For those who are familiar with the classic asp programming you will find…

More..

Datagrid basic operations on ASP .Net / C# by azamsharp

Introduction: Microsoft.net framework ships with many usefull controls. These controls makes the life of developer easy by providing them…

More..

Datagrid basic operations on ASP .Net / C# – Part II by azamsharp

Paging, Sorting, Deleting: Introduction: In this second and last article we will see some of the most commonly used features of the datagrid web…

More..

Inserting Multiple Records in the Database by azamsharp

Part I (Selecting Items from the datagrid) Introduction: We always come across situations when we need to insert multiple records in the database…

More..

Insert multiple records using datagrid by azamsharp

Part II Introduction: In the last article we saw that how we can collect all the selected values from the datagrid control using checkboxes and…

More..

Accessing Different Controls inside the Datagrid by azamsharp

Introduction: Every now and then I get emails saying that how can we get value from a textbox that is inside a datagrid?. When I answer that the…

More..

Creating Dynamic Bound and Template columns in DataGrid by azamsharp

Introduction: We are all familiar with Datagrid control's bound and template column. Usually we build columns using property builder. In this…

More..

Application architecture in asp .net by azamsharp

Introduction: Application Architecture is the most important process of developing a good application. Some people tends to jump into coding…

More..

Developing a Simple RSS Reader Custom Control in Asp.net by azamsharp

Introduction: RSS (Really Simple Syndication) is one of the newest technology to update live data. Almost all of the blogs these days support and…

More..

Asp.net Frequently Asked Questions by azamsharp

Introduction: I post a lot on Asp.net forums, most of the times answering questions and sometimes asking questions. Q1: How do I open a new…

More..

Disabling Mouse clicks while processing using Javascript by aliasgar

Disabling Mouse clicks while processing using Javascript We had an ASP.NET page and user can select something in dropdown and press Submit button…

More..

Exporting Data Grid to Excel Using C# by azamsharp

Introduction: Datagrid is one of the most coolest controls in the Asp.net. One thing that all developers need is to put the data grid data into…

More..

WebPart Framework basics by deepak.gupta

ASP .Net Web Parts framework contains a set of controls that help in organizing a portal page in a way that provide users of the portal flexibility…

More..

Master Pages in ASP .Net 2.0 by azamsharp

Introduction: Master pages are a new cool feature that has been added to the Asp.net 2.0, known as "Whidbey". A Web application has to look…

More..

Grid view control in ASP .Net 2.0 by azamsharp

Introduction: We all enjoyed the datalist and the datagrid controls in Asp.net 1.1. There were thousands of operations that we can perform using…

More..

Asp .net 2.0 GridView control in depth by azamsharp

Introduction: In the last article we looked at few of the new controls available in Asp.net 2.0. We also talked about Grid View Control which has…

More..

Profiles in Asp.net 2.0 by azamsharp

Introduction: We all remember the Sessions and Application variables in Asp.net 1.1. For those who are not familiar with Sessions and Application…

More..

Dataset Features in Asp .net 2.0 by azamsharp

Introduction: We all have been using DataSet object to in one way or the other. The most common use of the DataSet object is to populate web server…

More..

Code Snippets in Visual Studio .Net 2005 by azamsharp

Introduction: How many times you wrote the same code again and again? How many times you knew the whole code but could not get enough time to write…

More..

Website Profile Object in Asp .net 2.0 by azamsharp

Introduction: Most of the websites provide the functionality which uniquely identifies the users. This identification can be done using many…

More..

ASP .NET 2.0 Profile Object – Part II by azamsharp

Introduction: In the last article you learned the basics of the Profile object which is introduced in ASP.NET 2.0 In this article we will learn…

More..

Updating Parent Page from Child Pop-Up Asp.Net 2.0 by carcher

You may find yourself using pop-up child windows to extend and enhance your existing web pages.  You should consider using child-pop windows to…

More..

Bindable Time Control by carcher

I had issues finding a time control that would fit my needs.  So I created my own and here it is. The user can type in the time or use the…

More..

DHTML ToolTips using AJAX.NET Library by azamsharp

Introduction: In this article I will show you how you can use the power of DHTML and AJAX to make cool effects with ASP.NET Server Controls. The…

More..

USING AJAX.NET Library by azamsharp

Abstract AJAX (Asynchronous JavaScript and XML) allow you to make server side calls without a Postback. This increases the performance since you do…

More..

Using DataSet in C# – Some ideas

One of the great features introduced by microsoft in the .net technology is the dataset . The dataset is the object corresponding the the traditional…

More..

Adding DataColumn to a Dataset and DataTable

DataSet can be filled with data in multiple ways. One of them is to add data manually. The data can be added either to a new and empty DataSet or to…

More..

DataSet in .Net

What is DataSet: A Dataset is a in memory representation of a collection of Database objects including tables of a relational database scheme. The…

More..

C# and ADO .NET by edlukens

Last updated February 1, 2005 With the introduction of .NET technology came a new concept in database connectivity called ADO.NET. While similar…

More..

Setting Security for .NET Application Deployment by edlukens

Last Update: 11.02.2005 You've worked for months and months on your C# application and it has passed testing now is ready for deployment. You get…

More..

Running oracle stored procedures in C# by edlukens

Last Update: 18 February 2005 Note: This article assumes a basic knowledge of Oracle stored procedures and how to create and access them. While…

More..

SQL DMO for automated Database Backup and Restore

SQL DMO or SQL Distributed Management Objects are available through a Development library called SQLDMO.DLL from Microsoft. This Library can be used…

More..

Data Access in ASP .Net 2.0 by azamsharp

Introduction: Data Access has always been the heart and sole of any application. We saw ADO in classic Asp and ADO .NET in Asp .net 1.1. We also saw…

More..

Reading and Writing images from SQL Server by ra00l

Introduction: Today you will learn to write images to SQL Server and then read and display them. In order to follow this tutorial, you will need to…

More..

ViewState Vs Data Caching by azamsharp

Introduction: A couple of days ago I ran into a confusion when I had to decide that whether to use ViewState or Data Caching. The use of ViewState…

More..

Silverlight HtmlHost control Revised

A HTML Host control was always an useful add on for lot of Silverlight apps. The previous HTML Host that I published on Html host blog link did have…

More..

GPS Tracking System in Silverlight

Recently I was involved in a project to build a GPS Asset tracking system which involved a boutique of solutions and modules to be integrated. I am…

More..

Silverlight Google Map Control

Let us look at building a GIS Silverlight application with a map control. Silverlight enables this by the DeepZoom composer and MultiScaleTileSource…

More..

Saving State in Microsoft Silverlight

Saving State in Microsoft Silverlight Microsoft Silverlight is a platform for creating RIA (Rich Internet Applications). There can be only one…

More..

Speech in Silverlight by Anton

Creation of RIA is always something amazing and new. Adding ability to pronounce text for end user is one of those features. In this article you will…

More..

Silverlight Pivot Viewer by Anton

Internet is a great opportunity to show your products to the end customers, but sometimes quantity of those products is too large. New Silverlight…

More..

Microsoft Surface-The Future that you can touch now by Anton

Imagine, with one hand you can peek a color and with the other hand you can draw or even use every finger with it's own color scheme. You may control…

More..

XPath XML data processing in Silverlight by Anton

In the latest Silverlight version you can manupulate XML data not just by XMLReader or XMLWriter objects, but with new XPath - the query language for…

More..

Silverlight code obfuscation by Anton

Developing of RIA is always consist of deploying. You are uploading your XAP file to the server and adding the Silverlight object to your page…

More..

Easy animation with Artefact Animator by Anton

You know that Silverlight has a big even huge abilities in animation programming. Design-time or in code - creation of animation is very simple if we…

More..

Be the first to comment

Leave a Reply