2
Answers

How to Create website to support muti-languages in mvc?

i want to create a website which will be automatically transfer its content to another language depending on my selection from drop down list
which contain telugu,hindi,english only.i want  language transfer not localization by using resource files. 
 
please give me any reference....
 Thanks.. 
 
 

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" })