| Articles |
SEO friendly pagination using asp:DataPager control
New
Posted on:
18 Aug 2008 09:54:23 AM by SheoNarayan
| Views:
46
| Category:
ASP.NET
This article shows how to paginate (SEO friendly) a ListView using DataPager control without enabling ViewState.
|
ListView Tips and Tricks
Posted on:
14 Aug 2008 05:43:53 AM by SheoNarayan
| Views:
105
| Category:
ASP.NET
ListView control is one of the most popular and powerful web server control in ASP.NET 3.5. In this article, we will explore most frequently asked questions about ListView control.
|
Dynamic Menu using XML DataSource ASP.NET ,VB.NET
Posted on:
06 Aug 2008 10:55:31 PM by Majith
| Views:
141
| Category:
ASP.NET
I am going to explain how to build dynamic menus using XMLDataSource Asp.Net ,vb.net.
|
Generating XML from relational database tables
Posted on:
04 Aug 2008 08:25:14 AM by Deeraj
| Views:
134
| Category:
Sql Server
This article describes how to generate XML string from relational database tables.
|
Forms Authentication in ASP.NET with C#
Posted on:
30 Jul 2008 04:08:34 PM by Raja
| Views:
518
| Category:
ASP.NET
This article describe how to use Forms Authentication in ASP.NET with C#. After reading this article you will be able to create a web application with Forms Authentication. This article also includes downloadable sample project with source code.
|
ASP.NET Client Side TextBox Validation
Posted on:
30 Jul 2008 04:41:09 AM by Majith
| Views:
259
| Category:
JavaScript
Like most programming tasks, client validation can be as simple or as more complex .In this article I am going to explain the Client Side Texbox Number/Characters Validation with JavaScript .
|
Working with HttpHandler in IIS 7
Posted on:
28 Jul 2008 03:56:22 PM by SheoNarayan
| Views:
201
| Category:
ASP.NET
In order to use custom HttpHandler in IIS 6 we simply used to write <httpHandlers> tag inside System.web tag in web.config file but in IIS 7 it is little tricky. In this article, I am going to show how to configure custom HttpHanlder in IIS 7.
|
Service Oriented Architecture, a real world example in ASP.NET with C#
Posted on:
27 Jul 2008 01:20:50 PM by SheoNarayan
| Views:
400
| Category:
.NET Framework
Service Oriented Architecture (SOA) a buzzing word in the world of software development these days. In this article, we will try to understand what the SOA is and how to create and consume it in ASP.NET with C#.
|
Uploading Files with ASP.NET ,VB.NET
Posted on:
24 Jul 2008 07:09:32 AM by Majith
| Views:
230
| Category:
ASP.NET
In this article, I will explain how to uplaod files using ASP.NET ,VB.NET.It is a simplest way of uploading the files.
|
ToolTip for List Items
Posted on:
24 Jul 2008 04:16:14 AM by Deeraj
| Views:
138
| Category:
ASP.NET
Adding tooltips for Items in a dropdownlist control
|
Reading and Writing Text Files
Posted on:
23 Jul 2008 01:20:05 AM by Majith
| Views:
136
| Category:
C#
Text files provide a common denominator format where both people and programs can read and understand. The .NET Framework includes convenience classes that make reading and writing text files very easy.
|
C# and ActiveX DLLs
Posted on:
23 Jul 2008 01:06:22 AM by Majith
| Views:
111
| Category:
C#
You may wonder about the idea of calling this DLL in a C# Application. Well, the C# language provides a way to call this COM server in a program. When we compile a C# program, Intermediate Language is generated and it is called as Managed Code. A Visual Basic 6.0 DLL is Unmanaged, meaning it is not generated by the Common Language Runtime, but we can make this VB DLL interoperate with C#, by converting it into a .NET compatible version. The following example shows how to create a simple server by using Visual Basic 6.0 and implementing it in a C# client program.
|
Brief Notes about Windows Communication Foundation
Posted on:
22 Jul 2008 10:47:10 PM by Majith
| Views:
103
| Category:
.NET Framework
In this article , im going to brief about WCF ( Windows Communication Foundation)
|
Introduction to ADO.NET
Posted on:
22 Jul 2008 02:34:09 PM by Vuyiswamb
| Views:
153
| Category:
ADO.NET
To my surprise, there are still software development houses that still initiate a Development using languages like VB6 and obviously using ADO. In most of the time when someone has a Problem about ADO, I fail to referrer them to an article about Introduction to ADO.NET. So I thought I should write one that will tell them how great it is to build Applications in .NET and ADO.NET is the best thing that has ever happened to Database Programming. In this Article, we are going to introduce those who are still experiencing ADO Problems.
|
About Web.Config Files
Posted on:
22 Jul 2008 03:29:03 AM by Majith
| Views:
203
| Category:
ASP.NET
I would like to share what I have understood about working with more than one Web.config file from my latest ASP.NET application.
|
Remoting.Net vs Web Services
Posted on:
22 Jul 2008 03:10:44 AM by Majith
| Views:
124
| Category:
ASP.NET
Both .Net Web services and .Net Remoting are Microsoft solutions for distributed application. Before choosing one of them for application development, let’s identify the differences between these technologies.
|
Difference between asp:LinkButton, asp:ImageButton, asp:Button and asp:HyperLink control
Posted on:
15 Jul 2008 09:25:51 AM by SheoNarayan
| Views:
1155
| Category:
ASP.NET
In this article, I am going to describe what are the main differences between asp:LinkButton, asp:ImageButton, asp:Button and asp:HyperLink control and how/where to use them effectively.
|
How to Serialize and DeSerialize an object into XML
Posted on:
10 Jul 2008 07:21:53 AM by SheoNarayan
| Views:
691
| Category:
ASP.NET
In this article, I am going to show how to Serialize and DeSerialize an object (can be a collection object or an object) into XML format using ASP.NET System.Xml.Serialization.XmlSerializer class.
|
How to pass a value from User Control to the Page
Posted on:
08 Jul 2008 01:06:59 PM by SheoNarayan
| Views:
1381
| Category:
ASP.NET
In the process of developing an application, there are situations when you need to pass a particular value from user control to its calling page. This article describes solution to that type of problem in an easy to follow steps.
|
Getting all stored procedures from a database
Posted on:
04 Jul 2008 12:12:12 AM by Hardcoder
| Views:
341
| Category:
Sql Server
Hi all,
Here how you can get all the stored procedure from a database. Hey not only the name but the stored procedures definitions also.
|