User Christian Dalager - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T19:16:19Zhttp://stackoverflow.com/feeds/user/11239http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808010/using-get-to-get-page-content-and-render-it-into-div-tag/1808017#18080172Answer by Christian Dalager for using $.get to get page content and render it into div tagChristian Dalager2009-11-27T10:43:36Z2009-11-27T10:43:36Z<p>use the load() function instead</p>
<pre><code>$("#RecentstoryDiv").load('/Views/Templates/_Temp1.ascx');
</code></pre>
<p>See the documentation here: <a href="http://docs.jquery.com/Ajax/load#urldatacallback" rel="nofollow">http://docs.jquery.com/Ajax/load#urldatacallback</a></p>
http://stackoverflow.com/questions/553330/how-do-i-use-windsor-to-inject-dependencies-into-actionfilterattributes3How do I use Windsor to inject dependencies into ActionFilterAttributesChristian Dalager2009-02-16T13:39:10Z2009-11-06T12:41:11Z
<p>Having seen how <a href="http://codeclimber.net.nz/archive/2009/02/10/how-to-use-ninject-to-inject-dependencies-into-asp.net-mvc.aspx" rel="nofollow">NInject can do it</a> and <a href="http://www.jeremyskinner.co.uk/2008/11/08/dependency-injection-with-aspnet-mvc-action-filters/" rel="nofollow">AutoFac can do it</a> I'm trying to figure out how to inject dependencies into MVC ActionFilters using Castle Windsor</p>
<p>At the moment I'm using an ugly static IoC helper class to resolve dependencies from the constructor code like this:</p>
<pre><code>public class MyFilterAttribute : ActionFilterAttribute
{
private readonly IUserRepository _userRepository;
public MyFilterAttribute() : this(IoC.Resolve<IUserRepository>()) { }
public MyFilterAttribute(IUserRepository userRepository)
{
_userRepository = userRepository;
}
}
</code></pre>
<p>I'd love to remove that static antipattern IoC thing from my filters.</p>
<p>Any hints to as how I would go about doing that with Castle Windsor?</p>
<p>And no, changing DI framework is not an option.</p>
http://stackoverflow.com/questions/1523987/mvc-jquery-retreving-values-from-html-controls/1524027#15240271Answer by Christian Dalager for MVC JQuery: Retreving values from HTML controlsChristian Dalager2009-10-06T07:07:13Z2009-10-06T07:07:13Z<p>In order to reference the textbox the way you propose you will need to give the textbox a custom id like this, supposing you're iterating over a collection of users:</p>
<pre><code><%foreach(var user in Model.UserCollection){%>
<%= Html.TextBox("Name",user.Name,new{id="name"+user.Id})%>
<%}%>
</code></pre>
http://stackoverflow.com/questions/1415020/have-anyone-seen-a-good-asp-net-mvc-event-month-calendar/1417232#14172321Answer by Christian Dalager for have anyone seen a good asp.net mvc event month calendarChristian Dalager2009-09-13T08:46:44Z2009-09-13T08:46:44Z<p>I've skipped the serverside rendering and went directly for <a href="http://www.bytecyclist.com/projects/jmonthcalendar/" rel="nofollow">jmonthcalendar</a></p>
<p>It's quite easy to hookup the month-browsing to a controller action method.</p>
<p>You will also need to do a bit of tinkering with the <a href="http://www.mikage.to/jquery/jquery%5Fhistory.html" rel="nofollow">jquery-history</a> plugin (or something similar) to enable the browser back-button and links to specific months/dates.</p>
<p>And no, that is not exactly what you asked for, but that's what I ended up doing in your situation, and I'm quite happy with the result.</p>
http://stackoverflow.com/questions/1144077/cant-get-search-result-for-searching-for-ajax-form/1145851#11458510Answer by Christian Dalager for Can't get search result for searching for ajax formChristian Dalager2009-07-17T21:50:44Z2009-07-17T21:50:44Z<p>You can pull MyList out into a Partial view, <code>MyPartialList.ascx</code></p>
<p>Your search actionresult should then return this partial view, something like this:</p>
<pre><code>public ActionResult Search(string keyword)
{
Repository repository = new Repository();
var listitems = repository.FindItemsByKeyWord(keyword);
return PartialView("MyPartialList", listitems);
}
</code></pre>
<p>In the index view, render the initial list like this:</p>
<pre><code><div id="MyList">
<% Html.RenderPartial("MyPartialList",Model); %>
</div>
</code></pre>
<p>Your partial, MyPartialList.ascx would look like this:</p>
<pre><code><%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Item>>" %>
<table ..>
<% foreach(var item in Model){%>
// print it out
<%}%>
</table>
</code></pre>
http://stackoverflow.com/questions/1110155/bitwise-operations-in-t-sql3Bitwise operations in T-SQLChristian Dalager2009-07-10T15:16:31Z2009-07-10T15:20:55Z
<p>I have a bitmasked int field in my database.
Usually I manage it through c# code, but now I need to flip a bit in the mask using T-SQL</p>
<p>How do I accomplish the following:</p>
<blockquote>
<p>The bit i want to flip: 1 << 8 (256)</p>
<p>The mask value before i flip: 143</p>
<p>The mask value after i flip: 399</p>
</blockquote>
<p>I'm not exactly a bit-flipping wizard but this can be done without the bit operators that's missing in tsql, right?</p>
http://stackoverflow.com/questions/1009110/learning-nhibernate/1011447#10114474Answer by Christian Dalager for Learning NHibernateChristian Dalager2009-06-18T08:25:11Z2009-06-18T08:25:11Z<p>I would suggest that you grab a copy of the excellent book <a href="http://www.manning.com/kuate/" rel="nofollow">NHibernate in Action</a> </p>
<p>Although it covers NHibernate 1.2 it's very good at explaining the OR/M fundamentals of NHibernate and some general design principles for using NH in applications.</p>
<p>Buying it with the pdf version on the side will give you a nice searchable reference.</p>
http://stackoverflow.com/questions/993476/change-menus-depending-on-controller-in-asp-net-mvc/993502#9935021Answer by Christian Dalager for Change menus depending on controller in ASP.NET MVCChristian Dalager2009-06-14T19:03:14Z2009-06-14T19:03:14Z<p>You can do a </p>
<blockquote>
<p>ViewContext.Controller.GetType().Name</p>
</blockquote>
<p>That should do it.</p>
http://stackoverflow.com/questions/960942/c-mvc-what-are-the-real-advantages-to-using-modelbinders/961393#9613930Answer by Christian Dalager for C# MVC: What are the real advantages to using Modelbinders?Christian Dalager2009-06-07T07:19:41Z2009-06-07T07:19:41Z<p>Here's another benefit:</p>
<p>You can create modelbinders that retrieves an object from the database just given an ID.</p>
<p>This will allow you to get actions like this</p>
<pre><code>// GET /Orders/Edit/2
public ActionResult Edit(Order order){
return View(order);
}
</code></pre>
<p>And the custom <code>ModelBinder</code> would do the datafetching for you, keeping your controller skinny.</p>
<p>Without that <code>ModelBinder</code> it could look like this:</p>
<pre><code>// GET /Orders/Edit/2
public ActionResult Edit(int id){
var order = _orderRepository.Get(id);
// check that order is not null and throw the appropriate exception etc
return View(order);
}
</code></pre>
http://stackoverflow.com/questions/882916/calling-filterattributes-onactionexecuting-before-basecontrollers-onactionexecu0Calling FilterAttribute's OnActionExecuting before BaseController's OnActionExecutingChristian Dalager2009-05-19T13:53:36Z2009-05-19T20:42:19Z
<p>I have a <code>BaseController</code> in which I put in some data in the <code>ViewData</code> collection by overriding <code>OnActionExecuting</code>.</p>
<p>Now i have an Action in a <code>ChildController</code> that doesn't need that view data.</p>
<p>For that purpose I created an <code>DontPopulateViewData</code> ActionFilterAttribute that sets a bool on the <code>BaseController</code> that prevents the <code>BaseController</code> from populating the viewdata.</p>
<p>Problem: the ActionFilters <code>OnActionExecuting</code> method is called after the one in <code>BaseController</code> and not before.</p>
<p>Will ActionFilters always be called before overridden <code>OnActionExecuting</code> in base controllers and is there a way to get around this?</p>
http://stackoverflow.com/questions/536283/jquery-getjson-not-passing-any-values-to-controller/536966#5369661Answer by Christian Dalager for jquery getJson not passing any values to controllerChristian Dalager2009-02-11T14:16:42Z2009-02-11T14:16:42Z<p>You will have to fix your route and replace {id} with {search} in order to get it to bind to the correct parameter - try something like this:</p>
<pre><code>routes.MapRoute("search", "Home/Results/{search}",
new { controller = "Home", action = "Results" });
</code></pre>
<p>If you don't want to do that, you can do it like this by specifying the parametername as a standard querystring paramter</p>
<pre><code>$.getJSON("/Home/Results?search=" + searchText,bindresults);
</code></pre>
<p>that will fix the binding.</p>
http://stackoverflow.com/questions/362514/asp-net-mvc-current-action/527830#5278308Answer by Christian Dalager for ASP.NET MVC - Current ActionChristian Dalager2009-02-09T11:42:13Z2009-02-09T11:42:13Z<p>In the RC you can also extract route data like the action method name like this</p>
<pre><code>ViewContext.Controller.ValueProvider["action"].RawValue
ViewContext.Controller.ValueProvider["controller"].RawValue
ViewContext.Controller.ValueProvider["id"].RawValue
</code></pre>
http://stackoverflow.com/questions/500696/why-does-visual-studio-crash-opening-aspx-with-mvc-rc1/500732#5007321Answer by Christian Dalager for Why does Visual Studio crash opening ASPX with MVC RC1Christian Dalager2009-02-01T12:47:26Z2009-02-01T12:47:26Z<p>I've had problems like that before. It was the webform editor. If you right-click the aspx file and choose "open with..." and select Html-editor the ide will most likely not crash on you.</p>
<p>Try disabling addIns one by one.</p>
<p>For me it was a conflict between gallio and testdriven.net I think.</p>
http://stackoverflow.com/questions/499319/what-are-some-projects-which-are-examples-of-best-pratices-for-asp-net-mvc/499641#4996412Answer by Christian Dalager for What are some projects which are examples of best pratices for ASP.NET MVC?Christian Dalager2009-01-31T21:43:41Z2009-01-31T21:43:41Z<p>Consider <a href="http://code.google.com/p/codecampserver/" rel="nofollow">Code Camp Server</a>, besides being a good MVC example it's also a good example of some of the practices from Domain Driven Design, NHibernate etc.</p>
<p>There's also <a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">S#arp Architecture</a> which is more of a web framework built on top of aspnet-mvc.</p>
http://stackoverflow.com/questions/495634/jquery-forms-authentication-with-asp-net-mvc/495650#49565010Answer by Christian Dalager for jQuery Forms Authentication with ASP.NET MVCChristian Dalager2009-01-30T14:25:21Z2009-01-31T08:48:27Z<p>Yes, it's possible.
Just submit the login-form using the method <a href="http://weblogs.asp.net/mikebosch/archive/2008/02/15/asp-net-mvc-submitting-ajax-form-with-jquery.aspx" rel="nofollow">described here by mike bosch</a> and return a json datastructure with the returnUrl if any.</p>
<p>I have created a lightweight LoginResultDTO class that i return as json:</p>
<pre><code>public class LoginResultDTO
{
public bool Success {get;set;}
public string Message {get;set;}
public string ReturnUrl {get;set;}
}
</code></pre>
<p>Here's a script block from my LogOn view:</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
var form = $($("form")[0]);
form.submit(function() {
var data = form.serialize();
$.post(form.attr("action"), data, function(result, status) {
if (result.Success && result.ReturnUrl) {
location.href = result.ReturnUrl;
} else {
alert(result.Message);
}
}, "json");
return false;
});
});
</script>
</code></pre>
<p>This will ajax wrap the logon form. Note that this is the simplest implementation of the javascript code possible but it's a place to start.</p>
<p>Then I have modified my LogOn action in the AccountController and in the relevant places put something like this:</p>
<pre><code>if(Request.IsAjaxRequest())
{
return Json(new LoginResultDTO{Success=true,Message="Successfully logged in"});
}else
{
return View();
}
</code></pre>
<p>So this is an ultralight but rather complete version of how jquery authentication could be done in asp.net mvc.</p>
http://stackoverflow.com/questions/495124/how-do-you-redirect-to-the-calling-page-in-asp-net-mvc/495213#4952134Answer by Christian Dalager for How do you redirect to the calling page in ASP.NET MVC?Christian Dalager2009-01-30T11:27:10Z2009-01-30T14:20:14Z<p>You should provide a RedirectToUrl parameter from the posting page.</p>
<p>Relying on referrer headers is not a good practice.</p>
<p>Instead, do something like this:</p>
<pre><code>public ActionResult Delete(int id, string RedirectToUrl)
{
// check if RedirectToUrl is null or empty and redirect accordingly
}
</code></pre>
<p>On the posting view or partial view you can provide the parameter in several ways:</p>
<pre><code><%= Html.Hidden("RedirecToUrl","/my/lovely/url") %>
</code></pre>
<p>or</p>
<pre><code><form action="/item/delete/22?RedirectToUrl=/my/lovely/url">
</code></pre>
<p>I'd prefer the first option.</p>
http://stackoverflow.com/questions/492770/jquery-vs-microsoftajax-in-asp-net-mvc/493222#4932221Answer by Christian Dalager for jQuery vs MicrosoftAjax in ASP.NET MVCChristian Dalager2009-01-29T20:18:48Z2009-01-29T20:18:48Z<p>I have tried to use both more or less side by side.</p>
<p>The builtin ajax helpers works fine.</p>
<p>But jquery has a smaller footprint and is more transparent in use.</p>
<p>And when using the ajax helpers I get immediate results but no sense of what goes on behind the scenes</p>
<p>Besides If you have to bridge over into jquery in order to extend your ajax scenario, you might as well start there.</p>
http://stackoverflow.com/questions/489188/server-side-validation-how-to-pass-errors-to-view-in-mvc/490907#4909070Answer by Christian Dalager for server side validation, how to pass errors to view in MVC?Christian Dalager2009-01-29T08:39:46Z2009-01-29T09:34:36Z<p>I use the builtin <code>ModelState</code> object hold my validation errors. Validation is done either in binding or by hand supported by manually adding the errors like this: </p>
<p><code>ModelState.AddModelError("LastName","Last name can't be Doe")</code>.</p>
<p>To support the ajax form post scenario, I have made an extension method to the ModelStateDictionary, <code>GetErrors()</code>, that returns a light <code>ModelStateErrorsDTO</code> object (a flattened version of the modelstate's validation errors suitable for json serialization).</p>
<p>When a form post is an ajax request I then return a json serialized <code>ModelStateErrorsDTO</code>.</p>
<p>On the jquery side I have written a helper function that places the validation errors next to the relevant inputfields using the default mvc css classes, i.e. <code>input-validation-error</code>.</p>
<p>This way you will be able to make unobtrusive ajaxforms with validation messages.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/286132/asp-net-mvc-getting-a-paritial-views-html-from-inside-of-the-controller/286381#2863812Answer by Christian Dalager for ASP.net MVC: Getting a Paritial View's HTML from inside of the controllerChristian Dalager2008-11-13T06:36:32Z2008-11-13T06:36:32Z<p>You would create your action like this:</p>
<pre><code> public PartialViewResult LoginForm()
{
var model = // get model data from somewhere
return PartialView(model);
}</code></pre>
<p>And the action would return the rendered partial view to your jquery response.</p>
<p>Your jquery could look something like this:</p>
<pre><code>$('#targetdiv').load('/MyController/LoginForm',function(){alert('complete!');});</code></pre>
http://stackoverflow.com/questions/277697/is-configuration-generateschemaupdatescript-in-nhibernate-a-good-way-to-manage1Is Configuration.GenerateSchemaUpdateScript() in NHibernate a good way to manage db schema changesChristian Dalager2008-11-10T11:52:57Z2008-11-11T11:33:25Z
<p>I'm using NHibernate mappings as a defining schema for my app in the development phase and for the schema definition I'm using the <code>NHibernate.Tool.hbm2ddl.SchemaExport()</code> method to generate a createscript.</p>
<p>Now, I have considered using the <code>Configuration.GenerateSchemaUpdateScript()</code> method to generate database changescripts like this:</p>
<pre><code>
var dialect = Dialect.GetDialect(configuration.Properties);
string[] schemaUpdateScript;
using (var conn = new SqlConnection(
configuration.GetProperty("connection.connection_string")))
{
conn.Open();
schemaUpdateScript = configuration.GenerateSchemaUpdateScript(dialect,
new DatabaseMetadata(conn, dialect));
}
</code></pre>
<p>After this I'll save the schema update script to timestamp-named script-files.</p>
<p>Is this a good way to manage schema changes in NHibernate?</p>
<p>Are there any major drawbacks?</p>
http://stackoverflow.com/questions/278046/free-nhibernate-helper-tools/278154#2781542Answer by Christian Dalager for Free NHibernate helper tools?Christian Dalager2008-11-10T15:31:13Z2008-11-10T15:31:13Z<p><a href="http://ayende.com/Blog/archive/2007/06/02/NHibernate-Query-Analyzer-for-NHibernate-1.2-GA.aspx" rel="nofollow">NHibernate Query Analyzer</a> is a must for constructing queries. It's not for configuration, I know, but a must when trying to get your head around HQL.</p>
http://stackoverflow.com/questions/276112/how-to-return-a-view-in-mvc-with-url-like-this-http-localhost-adminsayhi/277312#2773121Answer by Christian Dalager for How to return a View in MVC with URL like this http://localhost/admin#sayhiChristian Dalager2008-11-10T07:48:18Z2008-11-10T07:48:18Z<p>the '#' character is used for page internal bookmark links and should not be used for server side logic. so linking to a page with your #sayhi url, the browser will go to that page and scroll down to a tag like this: </p>
<pre><code><a name="sayhi"></a></code></pre>
<p>If you want to pass <code>sayhi</code> into the action you should use ? instead and grab it from the request.</p>
http://stackoverflow.com/questions/248112/how-do-i-call-a-c-windows-application-from-a-control/248336#2483360Answer by Christian Dalager for How do I call a c# windows application from a control?Christian Dalager2008-10-29T20:40:35Z2008-10-29T20:40:35Z<p>You could modify your .exe application and add a remoting interface to it, making it a server-process, and then let your "control" act as client-process and call methods on the server.</p>
<p>This is a hacky design and I wouldn't recommend it, but since you asked :)</p>
http://stackoverflow.com/questions/148384/how-do-i-inspect-the-asp-net-request-pipeline1How do I inspect the Asp.Net request pipeline?Christian Dalager2008-09-29T11:56:42Z2008-09-29T13:17:02Z
<p>When I measure request times on "the inside" of an Asp.Net application and compare it to timings on "the outside" of the app, I get different values -- 1000-5000ms strange overheads from time to time. </p>
<p>Maybe the requests are beeing queued up in front of IIS? </p>
<p>Or something strange is going on in an HttpModule?</p>
<p>The question: Is there a way to inspect the request pipeline for tracing exactly where the time is spent before the app is hit?</p>
http://stackoverflow.com/questions/120014/how-do-you-deal-with-painful-shoulders-and-cold-fingers/120160#1201605Answer by Christian Dalager for How do you deal with painful shoulders and cold fingersChristian Dalager2008-09-23T10:02:54Z2008-09-23T10:02:54Z<p>I have been using <a href="http://www.workrave.org/" rel="nofollow">WorkRave</a> to help me remember taking breaks in the periods where my arms are killing me. </p>
<p>It's basically an annoying tray app that reminds you in a highly configurable way.</p>
<p>With lots of sheep.</p>
http://stackoverflow.com/questions/1523987/mvc-jquery-retreving-values-from-html-controlsComment by Christian Dalager on MVC JQuery: Retreving values from HTML controlsChristian Dalager2009-10-06T09:40:05Z2009-10-06T09:40:05Zbtw Alex, you should tag your asp-net mvc questions with "asp.net-mvc" for better answershttp://stackoverflow.com/questions/1523987/mvc-jquery-retreving-values-from-html-controls/1524001#1524001Comment by Christian Dalager on MVC JQuery: Retreving values from HTML controlsChristian Dalager2009-10-06T07:10:49Z2009-10-06T07:10:49ZIt's basically a way to control the binding. If you have a Model with a User property on it, this is the best way to bind the User.Name. Both on rendering and on binding in the actionmethod's parameters that you post to.http://stackoverflow.com/questions/1523987/mvc-jquery-retreving-values-from-html-controls/1524001#1524001Comment by Christian Dalager on MVC JQuery: Retreving values from HTML controlsChristian Dalager2009-10-06T07:02:12Z2009-10-06T07:02:12ZNote that if you are using "User.Name" syntax, then the id will be rendered as id="User_Name"http://stackoverflow.com/questions/1415020/have-anyone-seen-a-good-asp-net-mvc-event-month-calendar/1417232#1417232Comment by Christian Dalager on have anyone seen a good asp.net mvc event month calendarChristian Dalager2009-09-13T13:21:58Z2009-09-13T13:21:58ZUnfortunately, I haven't got any public available sample code. But I might be able to provide a snippet later today.http://stackoverflow.com/questions/1112627/how-to-return-json-structure-in-asp-mvc/1112629#1112629Comment by Christian Dalager on How to return JSON structure in ASP MVCChristian Dalager2009-07-11T14:52:32Z2009-07-11T14:52:32Zyou should edit-fix the colon-error as stated below by Omarhttp://stackoverflow.com/questions/1110155/bitwise-operations-in-t-sql/1110163#1110163Comment by Christian Dalager on Bitwise operations in T-SQLChristian Dalager2009-07-10T15:29:21Z2009-07-10T15:29:21Zthanks! It solved my problem! Is there also a way to turn on the bit in an elegant way? (i already did it, but it looks ugly...)http://stackoverflow.com/questions/1038490/nhibernate-many-to-many-cascading-deleteComment by Christian Dalager on NHibernate - Many-to-Many Cascading DeleteChristian Dalager2009-07-10T09:32:33Z2009-07-10T09:32:33Zdid you solve the problem? If yes then how?http://stackoverflow.com/questions/882916/calling-filterattributes-onactionexecuting-before-basecontrollers-onactionexecu/884909#884909Comment by Christian Dalager on Calling FilterAttribute's OnActionExecuting before BaseController's OnActionExecutingChristian Dalager2009-05-20T04:55:10Z2009-05-20T04:55:10ZThanks. And yes, putting the logic into an ActionFilter on the baseclass will solve the problem and even result in a cleaner design.
http://stackoverflow.com/questions/553330/how-do-i-use-windsor-to-inject-dependencies-into-actionfilterattributes/553405#553405Comment by Christian Dalager on How do I use Windsor to inject dependencies into ActionFilterAttributesChristian Dalager2009-02-17T08:23:59Z2009-02-17T08:23:59Zthanks a lot for your answer! I got running with a few mods: 1) the Container.Resolve line is requiring a generic parameter. I changed it to use Container.Resolve(serviceType) and cast it. 2) I inherited mvccontrib WindsorControllerFactory and added the ActionInvoker in CreateController(). http://stackoverflow.com/questions/536283/jquery-getjson-not-passing-any-values-to-controller/536966#536966Comment by Christian Dalager on jquery getJson not passing any values to controllerChristian Dalager2009-02-11T14:44:25Z2009-02-11T14:44:25Ztry a basic
return Json(new{result="hello"});
and see if that workshttp://stackoverflow.com/questions/536527/how-do-i-pass-data-from-a-controller-to-a-strongly-typed-user-control-in-asp-net/536593#536593Comment by Christian Dalager on How do I pass data from a controller to a strongly typed user control in asp.net mvc?Christian Dalager2009-02-11T14:13:12Z2009-02-11T14:13:12Z"ViewData" can be omitted from "ViewData.Model" from the RC releasehttp://stackoverflow.com/questions/499817/what-is-the-proper-way-to-send-an-http-404-response-from-an-asp-net-mvc-action/499907#499907Comment by Christian Dalager on What is the proper way to send an HTTP 404 response from an ASP.NET MVC action?Christian Dalager2009-02-01T08:50:29Z2009-02-01T08:50:29Zis this action then wired up to a default route? Can't see how it gets to get executed.http://stackoverflow.com/questions/495634/jquery-forms-authentication-with-asp-net-mvc/495650#495650Comment by Christian Dalager on jQuery Forms Authentication with ASP.NET MVCChristian Dalager2009-01-30T17:08:42Z2009-01-30T17:08:42ZI just fired up firebug to see what's going on. When you hit the LogOn action with ajax and your login is successful, there's a set-cookie entry in the response header with the auth cookie. That's why it works.http://stackoverflow.com/questions/495634/jquery-forms-authentication-with-asp-net-mvc/495650#495650Comment by Christian Dalager on jQuery Forms Authentication with ASP.NET MVCChristian Dalager2009-01-30T15:20:34Z2009-01-30T15:20:34ZThings are good when that ajax post returns with a success result. But you will almost always redirect after a successfull login. In the ajax scenario by assigning the url to the <code>location.href</code> property in javascript.http://stackoverflow.com/questions/495124/how-do-you-redirect-to-the-calling-page-in-asp-net-mvc/495213#495213Comment by Christian Dalager on How do you redirect to the calling page in ASP.NET MVC?Christian Dalager2009-01-30T12:55:39Z2009-01-30T12:55:39Zyeah it's always a tradeoff. Changing every link in a website sounds like a lot like bad design to me though. If you are testing your controllers the redirect parameter will also be easier to test.