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
Javascript Website Design

HTML5 AJAX Responsive Contact Form With Google Maps

HTML5 AJAX Responsive Contact Form With Google Maps In this post we will discuss how to create a HTML5 AJAX Responsive Contact Form With Google Maps.I am using PHP as back end technology but you can use what ever you want. We are doing form validation in both HTML5 as well as jQuery(JavaScript) level but if you want you […]

Categories
Javascript

Allow Only Alphabets In Textbox Using JavaScript

Allow Only Alphabets In Textbox Using JavaScript In this post we will discuss how to Allow Only Alphabets In Textbox Using JavaScript.I have already discussed Allow Only Numbers In Textbox Using JavaScript.I am using jQuery for this to achieve. Code: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Allow Only Alphabets In Textbox Using JavaScript</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script type="text/javascript"> $(function () […]

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 != "") { […]