Click here to Skip to main content
15,889,739 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Pratialview page couldn't redirect

What I have tried:

[HttpPost]
public ActionResult CallAddress()
{
ISIModel objModel = new ISIModel();
int intABcode = 3164;
string strReferenceCode = null;
objModel.objAddressModel = new AddressBook.Address();
objModel.objAddressModel.objDllColl = objModel.objAddressModel.GetAddressintABcode, strReferenceCode); //This function is called from Dll.

return PartialView("_AddressBook", objModel);
}




<script>
function msg() {
var urlsearch = "@Url.Content("~/Intimation/CallAddress")";
$.ajax({
type: "POST", url: urlsearch,
});


}
</script>
Posted
Updated 21-Mar-16 20:54pm

 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900