2
Answers

client side validation using jquery asp.net textboxes...

Photo of Ramprasad

Ramprasad

7y
148
1
form validation using jquery in asp.net client side using external  (Jquery)script file.....please help me...i have tried some example but not solve my problem.....
 

Answers (2)

3
Photo of Gaurav Raut
NA 171 2 7y
function Show() {
var data = $('#CNform').serialize();
console.log(data);
$.ajax({
type: 'POST',
cache: false,
url: '/CN/Show',
data: data,
success: function (data, textStatus, jqXHR) {
},
error: function (jqXHR, textStatus, errorThrown) {
}
});
}
 
 
And change the type of parameter
//Controller
[HttpPost]
[AcceptVerbs(HttpVerbs.Post)]
public string Show(CNModel modelParameter)
{
// Code
}
Accepted
1
Photo of Faizan Syed
NA 16 1 7y
Thanks @Gaurav Raut
1
Photo of Pravin Ghadge
NA 2.5k 358.5k 7y
Thanx a lot Gaurav.
 
Issue has been resolved .
 
Also one thing i have modified in the cshtml file is:
 
  1. @using (Html.BeginForm(nullnullnew { @id = string.Empty }, FormMethod.Post,  
  2. new { @id = "CNform" })