Categories
Asp, Asp.net

Gridview Edit Delete Update

Gridview Edit Delete Update In this tutorial i will let you know about the Edit, Delete, Update functionality in Gridview using C#.In this we are using Gridview Events like Gridview_updating, Gridview_Deleteing, Gridview_CancelingEdit. For this we start from creating a connection.How to create a connection in asp.net you can find that on following post here. Design View:- <%@ […]

Categories
Asp, Asp.net

How To Check Leap Year In Asp.Net

How To Check Leap Year In Asp.Net In this post i am going to explain that how to check that current year is Leap or not in Asp.Net.It is very simple and having just a few lines of code. Method 1:- protected void Page_Load(object sender, EventArgs e) { Int32 Year = DateTime.Now.Year; if (DateTime.IsLeapYear(Year)) { […]

Categories
Asp, Asp.net

How to Display Images in GridView Control In Asp.Net

How to Display Images in GridView Control In Asp.Net In this tutorial i will let you know, that How to Display Images in GridView Control In Asp.Net.In this first part is to store the image in application specific folder and store the full path in database and then retrieve the image and display that into a […]

Categories
Asp, Asp.net

Upload Multiple Files in Asp.Net

Upload Multiple Files in Asp.Net In this tutorial i will let you know that how can you upload multiple files in asp.net at once, Here i am using FileUpload control for this no other functionality is required. Design View:- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html […]