Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to display popup for signin but i am unable to go to the partialview
C#
if (Request.IsAjaxRequest())
return PartialView("_PartialSigningIn"); directly it goes to the
return View("SampleAccount","Index");

Can any one help me!
Posted
Updated 8-Jan-13 19:24pm
v2

1 solution

could you please show your project structure? where is the view you are trying to access?
 
Share this answer
 
Comments
kavithabonala 9-Jan-13 2:47am    
In controller:

public ActionResult SigningIn()
{
if (Request.IsAjaxRequest())
return PartialView("_PartialSigningIn");

return View("SampleAccount", "Index");
}
kavithabonala 9-Jan-13 2:49am    
and my SigningIn view is:

@model GoGrain.Models.Account

<script src="../../Scripts/jquery.validate.min.js" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

SigningIn


@Html.Partial("_PartialSigningIn")
Faisalabadians 9-Jan-13 3:18am    
I am assuming that you have placed your partial view in other location then default i.e "shared", that's why I asked you to show your project structure, not code

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