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 […]

Categories
Asp, Asp.net

How To Refresh Asp.Net Gridview Automatically

How To Refresh Asp.Net Gridview Automatically In this tutorial i will let you know how to auto refresh or update GridView using AJAX Timer and UpdatePanel in asp.net, How To Refresh Asp.Net Gridview Automatically. In this it is described that how a GridView is update after a specific time set in timer control. In this Example […]

Categories
Asp, Asp.net

Send Email with Attachment in Asp.Net

send email with attachment in asp.net In this tutorial i will let you know how to Send Email with Attachment in Asp.Net.I am saving this file into memory stream rather saving it on server. Here i am using Gmail smtp to send mail from Asp.net code.For this first we have to add the following namespaces. Design your […]