How to create MVC First simple application
It is very easy to make application in mvc follow some steps and create first application
STEP 1 - Click on Start menu and Open Visual studio.
STEP 2 - Open View folder click Home folder...
How To Create First Application in MVC.Follows Some Steps-
STEP 1. Firstly Go Start menu in Computer And Click on Installed Visual studio.
Ex.
Open This Window after processing next window open like-
Ex.
STEP...
Validate Email using Regular Expression In JavaScript-
1. Create Input type Text box and and onclick cal checkemail function of Javascriptusing .
2. Define Function in Script with regex expression .
<script>
function checkEmail()
{
email = $('#txtEmail');
filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
...
We use Validation for Email in Javascript
like in above example
<!DOCTYPE html>
<html>
<head>
<script>
function validateForm() {
var x = document.forms["myForm"]["email"].value;
var atpos = x.indexOf("@");
var dotpos = x.lastIndexOf(".");
if (atpos<1 || dotpos<atpos+2...
Defination
1. Collapse Means suddenly fall down.
2. Just add data-toggle="collapse" and a data-target to element to automatically assign control of a collapsible element. The data-target attribute accepts a CSS selector to apply the collapse to. Be sure to add the class collapse to the collapsible element. If you'd like...