category

home / developersection / category

Set Property Value on Master Page from Content Page
asp.net 17-Oct-2011
Set Property Value on Master Page from Content Page

In this blog I am going to explain how to set value of property on the master page, so that property can be easily access on its content page. If you

Exception Handling through JavaScript
asp.net 17-Oct-2011
Exception Handling through JavaScript

Exception handling is an important concept which is widely used in programming language. Exception handling is an important approach which is designed to handle unexpected occurrence of code error in programming language.

Profile in ASP.net
asp.net 10-Aug-2011
Profile in ASP.net

The ASP.NET Framework provides an alternative to using cookies or Session state to store user information as a Profile object. When a user visits your

Themes in Asp.net
asp.net 09-Aug-2011
Themes in Asp.net

A theme is a collection of property settings that allow you to define the look of pages and controls, and then apply the look consistently across page

Clearing Cache in Asp.net
asp.net 09-Aug-2011
Clearing Cache in Asp.net

In computer engineering, a cache is a component that transparently stores data so that future requests for that data can be served faster. If requeste

Registering Client Script in Asp.net
asp.net 09-Aug-2011
Registering Client Script in Asp.net

IntroductionClient-side script generally refers to the class of computers programs on the web that are executed client side by the user’s browser, ins

State Management in ASP.NET
asp.net 08-Aug-2011
State Management in ASP.NET

State Management in ASP.NETState management is the process by which you maintain state and page information over multiple requests for the same or dif

i want to display images into to datagridview one by one taking image url from database field
asp.net 03-Aug-2011
i want to display images into to datagridview one by one taking image url from database field

Dim di As New IO.DirectoryInfo("C:\Inetpub\wwwroot\images") Dim aryFi As IO.FileInfo() = di.GetFiles("*.JPG") For Each fi In aryFi Dim imagname As

LoginForm
asp.net 18-Jul-2011
LoginForm

    public partial class MainForm : Form         int ctr;\\Give a class variable.Its will use for check the counter.         public MainForm()

Login_Form
asp.net 18-Jul-2011
Login_Form

try                 SqlConnection con = new SqlConnection();                 con.ConnectionString = "Data Source=ARUSHRAJ-PC;Initial Catalog=sampl

ASP.Net Repeater Control
asp.net 04-Jul-2011
ASP.Net Repeater Control

 The Repeater control is used to display a repeated list of items that are bound to the control. The Repeater control may be bound to a database table

Sending Mail in ASP.NET.
asp.net 23-May-2011
Sending Mail in ASP.NET.

Here in this blog I will tell you that how to send mail to users using SmtpClient and MailMessage class. Here I have created a small function which is