Categories
Asp, Asp.net

Image Resize In Asp.Net

Image Resize In Asp.Net In this post we will learn how to resize a image while uploading in asp.net or Image Resize In Asp.Net.We are not using any other kind of functionality here, we are simply using asp.net features.We are at first detect file size and then change it’s size(resize). Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" […]

Categories
Asp, Asp.net Javascript

jQuery Validate Registration Form

jQuery Validate Registration Form In this post we will learn how to validate registration form through jQuery or jQuery Validate Registration Form. Design: <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1"> <title>jQuery Registration Form Validation</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script language="javascript" type="text/javascript"> $(function() { $(‘#validate’).click(function() { var msg = ""; msg+= isvalidusr(); msg+= isvalidFname(); msg+= isvalidLoc(); if (msg != "") { […]

Categories
Asp, Asp.net

Progress Bar Example In Asp.Net

Progress Bar Example In Asp.Net In this post we will learn how to use Progress Bar Example In Asp.Net.We are using a DropDownList with having locations of different cities, Submit button on click of Submit button the data is loaded in ASP.Net GridView. Also there’s HTML DIV which is used to display the loading progress image till […]

Categories
Asp, Asp.net

Captcha Example In Asp.Net C#

Captcha Example In Asp.Net C# In this tutorial i will explain about Captcha,and how to use Captcha Example In Asp.Net C#.We will use Generic Handler to achieve this. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="Index" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Captcha Example In Asp.Net C#</title> <style type="text/css"> .bdy { margin: 0px auto; width:900px; font-family:Calibri; […]