Categories
Asp, Asp.net

How To Upload Multiple File With Progress Bar Using jQuery In Asp.Net

How To Upload Multiple File With Progress Bar Using jQuery In Asp.Net In this post we will learn How To Upload Multiple File With Progress Bar Using jQuery In Asp.Net. Here we are using a plugin uploadify which you can download from here. http://www.uploadify.com/download/ I have used Uploader.ashx in this we will write the code to upload files in […]

Categories
Asp, Asp.net

Change Button Color On MouseOver In Asp.Net

Change Button Color On MouseOver In Asp.Net In this post we will learn How to Change Button Color On MouseOver In Asp.Net. We have used CSS for this. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Change Button Color On MouseOver In Asp.Net</title> <style type="text/css"> body { width: 980px; margin: […]

Categories
Asp, Asp.net

How to show row number in Gridview, Repeater,ListView, FormView, DetailsView and DataList

How to show row number in Gridview, Repeater,ListView, FormView, DetailsView and DataList In this tutorial we will learn how to show Row_Number() to display row number in my data bound controls from long time. Every thing is working fine unless I have started using LINQ and Entity Framework. I found that Row_Number() is not supported. So […]

Categories
Asp, Asp.net

How To Reverse string In Asp.Net C#

How To Reverse string In Asp.Net C# In this tutorial we will explain How To Reverse string In Asp.Net C#.Here we are taking two approach one is through inbuilt function and second is through programmatically. Design View: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How To Reverse string In Asp.Net C#</title> […]