User swilliams - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:09:56Zhttp://stackoverflow.com/feeds/user/736http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/998853/asp-net-mvc-handleerror-not-working-customerrors-is-set-to-on1ASP.NET MVC HandleError not working (customErrors is set to "On")swilliams2009-06-15T22:55:03Z2009-11-18T20:31:44Z
<p>I believe I have set up our MVC app to use <code>[HandleError]</code> properly. This is my controller:</p>
<pre><code>[HandleError]
public class SupportController : BaseController {
public ActionResult Toss() {
throw new Exception("uh oh");
}
// snip
}
</code></pre>
<p>And I <strong>have</strong> set my <code>customErrors</code> tag in <code>web.config</code> to "On":</p>
<pre><code><customErrors mode="On"></customErrors>
</code></pre>
<p>However, I am still getting the Yellow Screen of Death on Exceptions. Setting a breakpoint in my <code>Toss()</code> action shows that <code>HttpContext.IsCustomErrorEnabled</code> <strong>is</strong> set to true. </p>
<p>We are not doing anything with the View Engine, and the <code>BaseController</code> doesn't mess with anything either (and other Controllers that do not extend it have the same issue).</p>
<p>I am developing on Windows XP, and have the same issue when the app is deployed to a server 2003 box (IIS 6).</p>
<p>I do not think there is an Exception on the <code>error.aspx</code> page:</p>
<pre><code><%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server">
<h2>
Sorry, an error occurred while processing your request.
</h2>
</asp:Content>
</code></pre>
<p>One thing that may be different is that this app was created back when MVC Beta was the latest version, and was upgraded to the RC and then RTM as they were released. Might there have been some kooky setting that is left over from there?</p>
<p>I can get this working on other apps, so I'm a little flummoxed.</p>
http://stackoverflow.com/questions/484489/is-there-a-way-to-programmatically-extract-an-interface2Is there a way to programmatically extract an Interface?swilliams2009-01-27T17:59:23Z2009-11-13T10:17:40Z
<p>Say I have a .NET class like so:</p>
<pre><code>public class Person {
public string Name { get; set; }
public int Id { get; set; }
}
</code></pre>
<p>Visual Studio has a nifty refactoring tool called Extract Interface that will extract an <code>IPerson</code> interface, and have <code>Person</code> implement it. Is there a way to do that programmatically from outside of Visual Studio? I'd even take a shell script if it can't be done programmatically. </p>
<p>[EDIT]
In actuality, I would have up to 50 classes, each with dependencies on each other.</p>
<p>Reflection would work, but it would introduce another wrinkle into the whole thing. The classes are already generated by <code>xsd.exe</code>. So, if I understand it correctly, the steps I would need to take would be:</p>
<ol>
<li>Generate classes from <code>xsd.exe</code>.</li>
<li>Compile the classes on the fly so that I can use reflection. </li>
<li>Reflect over them, emit the interfaces, and edit the original classes to
implement said interfaces.</li>
</ol>
<p>Generally I'd be in favor of just ditching the interfaces and using the classes directly, but for various reasons I cannot.</p>
http://stackoverflow.com/questions/1500400/is-tortoisegit-ready-for-prime-time-yet7Is TortoiseGit ready for prime time yet?swilliams2009-09-30T20:13:59Z2009-10-16T00:22:47Z
<p>I'm a big fan of the simplicity of TortoiseSVN. I also am interested in digging into git, and think it would make a good fit for an upcoming project. However, a strictly command-line based app can be a little intimidating. I've followed the <a href="http://code.google.com/p/tortoisegit/" rel="nofollow">TortoiseGit</a> project for a little while, and it looks like they are past 1.0.</p>
<p>Is there anyone using it in the wild right now? How's it working out? Does it let you use all of the features in git well?</p>
<p>If not, is there something else that works well? I'm really only looking at git based things right now.</p>
http://stackoverflow.com/questions/1382104/whats-the-difference-between-jquery-1-3-2-vsdoc-js-jquery-1-3-2-min-vsdoc-js/1382120#13821202Answer by swilliams for Whats the difference between jquery-1.3.2-vsdoc.js & jquery-1.3.2.min-vsdoc.jsswilliams2009-09-05T01:00:20Z2009-09-05T01:05:51Z<p>The .min version is the <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">minified</a> version of jQuery. I honestly don't know why you need a minified AND vsdoc version in your app though... Maybe if you just want the smallest file possible in for development? For deploying you should use the normal .min file (the one that is minified but <strong>not</strong> the vsdoc).</p>
http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversion4How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T16:38:27Z2009-09-01T23:09:30Z
<p>I'd like to be able to see someone's total lines of code contributed to our application. Say the app is 10k lines of code, I'd like to see the breakdown of how many LOC each developer has committed to the repository. Is there anything for SubVersion to get this kind of info?</p>
http://stackoverflow.com/questions/1359389/make-all-form-fields-readonly-in-mvc/1359431#13594310Answer by swilliams for Make all form fields readonly in MVCswilliams2009-08-31T21:06:47Z2009-08-31T21:06:47Z<p>Keep in mind that even if you set the tags as readonly on the server side, users can <strong>still</strong> change them through a variety of means, and whatever the value on the form is <strong>before</strong> it gets sent back to you.</p>
<p>Certainly the easiest way is client-side with jQuery:</p>
<pre><code>$(function() {
$('input, select, textarea').attr('disabled', 'disabled');
});
</code></pre>
<p>Or, you could do it in your View, but it's ugly. Off the top of my head, you would need some sort of <code>bool</code> passed into the View (via <code>ViewData</code> I suppose), and check that on <em>each</em> Input to see if you should add the <code>disabled</code> attribute. Not my idea of fun...</p>
http://stackoverflow.com/questions/1359266/asp-net-mvc-how-do-i-send-text-xml-to-all-browsers-but-ie/1359367#13593674Answer by swilliams for ASP.NET MVC: How do I send "text/xml" to all browsers but IE?swilliams2009-08-31T20:53:21Z2009-08-31T20:53:21Z<p>You <em>could</em> look at the properties in <code>Request.Browser</code> and sniff out IE that way, and return the proper view that way, though that is prone to issues. This isn't optimal because IE <em>might</em> support it in the future.</p>
<pre><code>public ActionResult MyAction() {
if (this.Request.Browser.Browser == "IE") {
return View("NonSVG");
} else {
return View("SVG");
}
}
</code></pre>
<p>Something worth looking into a little more might be this <a href="http://mdbf.codeplex.com/Wiki/View.aspx?title=Capabilities" rel="nofollow">page on Codeplex</a>. They define a property on <code>Browser</code> called <code>AcceptsImageSVG</code>, but it looks like it's geared towards mobile browsers, don't know if it could be used in your situation.</p>
http://stackoverflow.com/questions/1358406/global-error-handling-outside-of-controller-in-asp-net-mvc/1359301#13593010Answer by swilliams for Global error handling (outside of controller) in ASP.NET MVCswilliams2009-08-31T20:36:15Z2009-08-31T20:36:15Z<p>You can create a Filter that looks for an Exception in the <code>OnActionExecuted</code> method:</p>
<pre><code>[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public class WatchExceptionAttribute : ActionFilterAttribute {
public override void OnActionExecuted(ActionExecutedContext filterContext) {
if (filterContext.Exception != null) {
// do your thing here.
}
}
}
</code></pre>
<p>Then you can put <code>[WatchException]</code> on a Controller or Action Method, and it will let log exceptions. If you have a lot of Controllers, that might be tedious, so if you have a common Base Controller you can override <code>OnActionExecuted</code> there and do the same thing. I prefer the filter method.</p>
http://stackoverflow.com/questions/1357901/net-mvc-json-response-opens-up-dialog-box-to-save/1357957#13579570Answer by swilliams for .NET/MVC JSON response opens up dialog box to saveswilliams2009-08-31T15:16:35Z2009-08-31T15:16:35Z<p>Try throwing a <code>return false;</code> at the end of your <code>$("#editPageContentForm").submit()</code> function.</p>
http://stackoverflow.com/questions/1355464/asp-net-mvc-no-parameterless-constructor-defined-for-this-object/1355487#13554871Answer by swilliams for ASP.NET MVC: No parameterless constructor defined for this object.swilliams2009-08-31T01:54:06Z2009-08-31T01:54:06Z<p>By default, MVC Controllers require a default constructor with no parameters. The simplest would be to make a default constructor that calls the one with parameters: </p>
<pre><code>public MyController() : this(new Helper()) {
}
public MyController(IHelper helper) {
this.helper = helper;
}
</code></pre>
<p>However, you can override this functionality by rolling your own <code>ControllerFactory</code>. This way you can tell MVC that when you are creating a <code>MyController</code> give it an instance of <code>Helper</code>.</p>
<p>This allows you to use Dependency Injection frameworks with MVC, and really decouple everything. A good example of this is over at the <a href="http://structuremap.sourceforge.net/QuickStart.htm" rel="nofollow">StructureMap website</a>. The whole quickstart is good, and he gets specific to MVC towards the bottom at "Auto Wiring".</p>
http://stackoverflow.com/questions/1349470/asp-net-mvc-models-directory-what-is-it-good-for/1349494#13494941Answer by swilliams for ASP.NET MVC "Models" directory: What is it good for?swilliams2009-08-28T21:34:51Z2009-08-28T21:34:51Z<p>Since I generally keep my models in a separate project/assembly I use the <code>Models</code> folder to store UI specific classes, like if I have a View that displays both a <code>Widget</code> and a <code>Foosit</code>, I just wrap them up in a <code>WidgetFoositContext</code> object.</p>
<pre><code>public class WidgetFoositContext {
public Widget Widget { get; }
public Foosit Foosit { get; }
}
</code></pre>
http://stackoverflow.com/questions/1305996/asp-net-mvc-wrong-url-in-ajax-calls/1306408#13064080Answer by swilliams for ASP.NET MVC wrong url in ajax callsswilliams2009-08-20T14:01:41Z2009-08-20T14:01:41Z<p>If you stick with the strings and not <code>Url.Action</code>, put a forward slash before 'Home'</p>
<pre><code>url: "/Home/GetDetails"
</code></pre>
http://stackoverflow.com/questions/1302267/using-a-guid-as-the-id-in-a-database-with-asp-net-mvc/1302349#13023491Answer by swilliams for Using a GUID as the ID in a database with ASP.NET MVCswilliams2009-08-19T20:08:09Z2009-08-19T20:08:09Z<p>You could use a custom ModelBinder. I learned about those over <a href="http://stackoverflow.com/questions/1173678/mvc-updatemodel-when-the-names-dont-match-up">here</a>.</p>
<pre><code>public class MyClassBinder : DefaultModelBinder {
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType) {
var model = (Movie)base.CreateModel(controllerContext, bindingContext, modelType);
model.id = Guid.NewGuid();
return model;
}
}
</code></pre>
<p>And your action controller would be:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult MyAction(Movie movieToCreate) {
// movie should have a new guid in the id
_entities.AddToMovieSet(movieToCreate);
_entities.SaveChanges();
}
</code></pre>
<p>And you would need to register the binder in Global.asax:</p>
<pre><code>protected void Application_Start() {
RegisterRoutes(RouteTable.Routes);
ModelBinders.Binders.Add(typeof(Movie), new MyClassBinder());
}
</code></pre>
http://stackoverflow.com/questions/1296043/boilerplate-to-serve-up-a-generated-file-from-asp-net/1296210#12962102Answer by swilliams for Boilerplate to serve up a generated file from ASP.NETswilliams2009-08-18T20:12:13Z2009-08-19T16:33:53Z<p>You can create a "page" as a class that implements <code>IHttpHandler</code>. </p>
<pre><code>public abstract class FileHandler : IHttpHandler {
protected string Sourcename // the filename to dump out as
protected string Filename // the file to dump out
protected bool Delete // Delete the (temporary) file when done?
protected string ContentType // MIME type of the file
abstract protected void BindData();
public bool IsReusable {
get { return true; }
}
public void ProcessRequest(HttpContext context) {
BindData();
context.Response.ContentType = ContentType;
context.Response.AddHeader(
"content-disposition",
"attachment; filename=" + Filename);
context.Response.WriteFile(Sourcename);
if(Delete) File.Delete(Sourcename);
}
}
</code></pre>
<p>Then you could subclass as you said to add all the functionality you wanted. You could also add some events in there if you wanted to push handling things like that 'Delete' property. </p>
<p>Lastly, you would need to update the web.config to listen to the proper URLs. In the <code><httpHandlers></code> section add:</p>
<pre><code><add verb="*" path="myUrl.aspx" type="Namespace.And.Class, Library"/>
</code></pre>
http://stackoverflow.com/questions/1300128/reading-c-property-into-jquery-code/1300458#13004580Answer by swilliams for Reading C# property into JQuery codeswilliams2009-08-19T14:47:17Z2009-08-19T14:47:17Z<p>There isn't a really clean way to do this. Your best bet would probably be to use the <code>ClientScript.RegisterClientScriptBlock</code> functionality built into ASP.NET. <a href="http://www.aspcode.net/SystemWebUIPageRegisterClientScriptBlockstring-string-is-obsolete.aspx" rel="nofollow">Here's a good primer</a>.</p>
<pre><code>private int myValue;
protected void Page_Load(object sender, EventArgs e) {
ClientScript.RegisterClientScriptBlock(typeof(Page),
"vars", "<script>var myParams = { p1: " + myValue + ", p2: 'My Name' };</script>");
}
</code></pre>
<p>This will put the supplied script on your page towards the top of the form. You can change that too. Obviously, it isn't the prettiest; you are essentially string concatenating a different language, but it will work, and for simple variable declaration isn't too rough on the eyes.</p>
http://stackoverflow.com/questions/1299692/are-there-add-on-libraries-or-tools-available-for-asp-net-mvc-development/1300382#13003822Answer by swilliams for Are there add-on libraries or tools available for ASP.NET MVC development?swilliams2009-08-19T14:33:32Z2009-08-19T14:33:32Z<p>Not necessarily MVC specific, but:</p>
<p>MVC lends itself to take advantage of all the <a href="http://jqueryui.com/" rel="nofollow">jQuery UI</a> controls and pretty things.</p>
<p>There's also <a href="http://code.google.com/p/elmah/" rel="nofollow">Elmah</a>, and <a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">StructureMap</a> for DI/IOC.</p>
http://stackoverflow.com/questions/1296242/can-i-share-a-view-in-asp-net-mvc/1296266#12962664Answer by swilliams for Can I share a view in asp.net mvc?swilliams2009-08-18T20:20:18Z2009-08-18T20:20:18Z<p>Not sure I completely understand your question, but if you want to use the same View on different <code>ActionResults</code>, you can:</p>
<pre><code>public ActionResult One() {
// do stuff
return View("Index", myModel);
}
public ActionResult Two() {
// do stuff
return View("Index", myOtherModel); // Same View
}
</code></pre>
<p>Just make sure you are providing the same <code>Type</code> for the View (if the View needs a Type at all).</p>
http://stackoverflow.com/questions/1295180/whats-the-best-way-to-embed-constant-server-side-tags-inside-javascript-code/1295376#12953761Answer by swilliams for What's the best way to embed constant server-side tags inside javascript code?swilliams2009-08-18T17:32:23Z2009-08-18T17:32:23Z<p>You are using the MVC framework (your question is tagged as such) right? If so, you can create an action that returns a JavaScriptResult that will be executed on page when it loads:</p>
<pre><code>public class JSController : Controller {
public ActionResult Headers() {
// create your variables here
return JavaScript("alert('hi');");
}
}
</code></pre>
<p>And then you can add it to your aspx/master page:</p>
<pre><code><script src="/JS/Headers" type="text/javascript"></script>
</code></pre>
http://stackoverflow.com/questions/1289625/is-asp-net-mvc-still-a-seperate-download/1290331#12903310Answer by swilliams for Is asp.net mvc still a seperate download?swilliams2009-08-17T20:47:17Z2009-08-17T20:47:17Z<p>The MVC team does have a goal of <a href="http://www.haacked.com/archive/2009/07/30/asp.net-mvc-released.aspx" rel="nofollow">getting MVC 2.0 into Visual Studio 2010</a>. Neither version is in the current beta though (or at least I couldn't find it).</p>
http://stackoverflow.com/questions/1290189/how-do-i-make-a-beta-access-page-like-the-one-on-superuser-com/1290317#12903171Answer by swilliams for How do I make a beta access page like the one on superuser.com?swilliams2009-08-17T20:45:12Z2009-08-17T20:45:12Z<p>I'd create a custom filter that extended AuthorizeAttribute. That way you can put it on the controllers/actions you wanted, and remove it easily enough. Since it's essentially a decorator, you would be playing nice with the <a href="http://en.wikipedia.org/wiki/Open%5FClosed%5FPrinciple" rel="nofollow">Open/Closed principle</a> too.</p>
<p>If you override <code>AuthorizeCore</code> you can check session/cookie/whatever for the login and if that passes, run the base <code>AuthorizeCore</code> too.</p>
http://stackoverflow.com/questions/1285395/asp-net-mvc-do-all-post-requests-need-to-return-something/1285422#12854223Answer by swilliams for ASP.NET MVC: Do all POST Requests need to return something?swilliams2009-08-16T21:48:31Z2009-08-16T21:48:31Z<p>Consider using ajax to post the data. You can do it easily with jQuery or the built in MVC ajax stuff.</p>
<p>Or, just redirect to another page (perhaps the same one?) in your post handler. This is probably the desired approach anyway; if someone refreshes the page after they fill out a form, they won't be presented with the resend-the-form dialog. This is known as the <a href="http://devlicio.us/blogs/tim%5Fbarcz/archive/2008/08/22/prg-pattern-in-the-asp-net-mvc-framework.aspx" rel="nofollow">Post-Redirect-Get Pattern</a> (or PRG).</p>
http://stackoverflow.com/questions/1272596/is-right-use-strongly-typed-partial-views/1272661#12726611Answer by swilliams for Is right use strongly-typed partial views?swilliams2009-08-13T15:18:37Z2009-08-13T15:18:37Z<p>I've found strongly typed views, whether "full" or partial ones to be greatly beneficial. Otherwise you'd be stuck with a lot of <code>ViewData</code> code that isn't pretty and harder to debug.</p>
<p>If you find yourself jumping through a lot of hoops to get the models to work properly, consider wrapping the smaller ones in a bigger "context" type object:</p>
<pre><code>public class ViewModelA {
public string Name { get; set; }
}
public class ViewModelB {
public int Id { get; set; }
}
public class ViewModelContext {
public ViewModelA { get; set; }
public ViewModelB { get; set; }
}
</code></pre>
<p>And have your View take a <code>ViewModelContext</code> as the type. This will let you access all of the other models quickly. </p>
http://stackoverflow.com/questions/1173678/mvc-updatemodel-when-the-names-dont-match-up2MVC UpdateModel when the names don't match upswilliams2009-07-23T18:36:04Z2009-07-23T19:36:12Z
<p>Let's say that you have a Model that looks kind of like this:</p>
<pre><code>public class MyClass {
public string Name { get; set; }
public DateTime MyDate { get; set; }
}
</code></pre>
<p>The default edit template that Visual Studio gives you is a plain textbox for the <code>MyDate</code> property. This is all fine and good, but let's say that you need to split that up into it's Month/Day/Year components, and your form looks like:</p>
<pre><code><label for="MyDate">Date:</label>
<%= Html.TextBox("MyDate-Month", Model.MyDate.Month) %>
<%= Html.TextBox("MyDate-Day", Model.MyDate.Day) %>
<%= Html.TextBox("MyDate-Year", Model.MyDate.Year) %>
</code></pre>
<p>When this is submitted, a call to <code>UpdateModel</code> won't work, since there isn't a definition for <code>MyDate-Month</code>. Is there a way to add a custom binder to the project to handle situations like this, or if the HTML inputs are named differently (for whatever reasons)?</p>
<p>One workaround I've found is to use JavaScript to inject a hidden input into the form before submission that concatenates the fields and is named properly, but that feels wrong.</p>
http://stackoverflow.com/questions/1168731/securing-asp-net-mvc-application-checklist/1168788#11687881Answer by swilliams for Securing ASP.NET MVC Application Checklistswilliams2009-07-22T23:13:34Z2009-07-22T23:13:34Z<p>Don't use the default <code>GET</code> on actions unless absolutely necessary. For example, if you have a <code>DeleteUser</code> action that doesn't have a <code>[AcceptVerbs(HttpVerbs.Post)]</code> on it, it can be called via </p>
<pre><code><img src="http://yoursite/admin/DeleteUser/1" />
</code></pre>
<p>Which will get called by whomever "views" the image.</p>
http://stackoverflow.com/questions/1098754/why-doesnt-all-web-traffic-by-default-use-https-for-encryption-or-an-encrypte/1098781#10987811Answer by swilliams for Why doesn't all web traffic by default use https for encryption? (or an encrypted http)swilliams2009-07-08T15:22:21Z2009-07-08T15:22:21Z<p>There is a big business in selling SSL certificates. Many, many sites just don't need that kind of security either.</p>
<p>And frankly I don't think the biggest security issues are people snooping on plain http traffic. It's an issue sure, but the bigger fish to fry are people stealing user databases, and/or worms/viruses on the client. Https won't help you if the bad guys have your bank's database.</p>
http://stackoverflow.com/questions/42519/how-do-you-rotate-a-two-dimensional-array13How do you rotate a two dimensional array?swilliams2008-09-03T20:34:33Z2009-07-07T14:37:25Z
<p>Inspired by <a href="http://blogs.msdn.com/oldnewthing/archive/2008/09/02/8918130.aspx" rel="nofollow">Raymond Chen's post</a>, say you have a 4x4 two dimensional array, write a function that rotates it 90 degrees. Raymond links to a solution in pseudo code, but I'd like to see some real world stuff.</p>
<pre><code>[1][2][3][4]
[5][6][7][8]
[9][0][1][2]
[3][4][5][6]
</code></pre>
<p>Becomes:</p>
<pre><code>[3][9][5][1]
[4][0][6][2]
[5][1][7][3]
[6][2][8][4]
</code></pre>
<p><strong>Update</strong>: Nick's answer is the most straightforward, but is there a way to do it better than n^2? What if the matrix was 10000x10000?</p>
http://stackoverflow.com/questions/1005155/how-to-deal-with-session-timeouts-in-ajax-requests/1005194#10051944Answer by swilliams for How to deal with session timeouts in AJAX requestsswilliams2009-06-17T05:03:09Z2009-06-17T05:03:09Z<p>Consider returning an http status of 401, and a JSON object detailing the reason. If you're using jQuery, that'll drop you to the <code>error()</code> callback, which you can then parse your object.</p>
<pre><code>$.ajax({
data: {},
dataType: 'html',
success: function(data) {
// do whatever here
},
type: 'POST',
url: 'myserver.com',
error: function(XMLHttpRequest, textStatus, errorThrown) {
// XMLHttpRequest.responseText has your json string
// XMLHttpRequest.status has the 401 status code
if (XMLHttpRequest.status === 401) {
location.href = 'login.php';
}
}
});
</code></pre>
<p>I'm not familiar with PHP anymore, but this should work for just about any environment. You <em>may</em> have to suppress any automatic login form redirection though. In asp.net mvc the framework will see the 401 and push the default login form back, with a status of 200.</p>
http://stackoverflow.com/questions/1005122/jquery-ajax-call-gets-resolved-to-the-current-controller-folder-instead-of-root/1005141#10051411Answer by swilliams for JQuery Ajax call gets resolved to the current Controller Folder, Instead of root Folderswilliams2009-06-17T04:36:03Z2009-06-17T04:36:03Z<p>Try using this as your URL:</p>
<pre><code> $.getJSON("/ViewRecord/GetSoftwareChoice", // etc
</code></pre>
<p>Note the prefixed forward slash.</p>
http://stackoverflow.com/questions/895179/how-to-get-the-index-of-an-element-without-this0How to get the index of an element without 'this'?swilliams2009-05-21T21:10:36Z2009-06-13T23:54:08Z
<p>I have a form that looks kind of like this:</p>
<pre><code><div>
<div class="contact">
<h1>Person's name</h1>
<!-- more stuff goes here -->
<form method="post" action="myurl">
<input type="submit" value="go" />
</form>
</div>
<div class="contact">
<h1>Another name</h1>
<!-- more stuff goes here -->
<form method="post" action="myOtherUrl">
<input type="submit" value="go" />
</form>
</div>
</div>
</code></pre>
<p>I'm using jQuery to capture the form's <code>submit</code> event and need to get the index of the <code>div</code> containing the button that submitted it. Normally I'd use jQuery's <a href="http://docs.jquery.com/Core/index" rel="nofollow"><code>index()</code></a> function like so:</p>
<pre><code>var i = $(this).parents('.contact').index(this);
</code></pre>
<p>Unfortunately, the <code>this</code> operator in this case refers to the <code>form</code> that is being submitted. I think there's probably something simple I'm missing, but my mind's drawing a blank on this one.</p>
http://stackoverflow.com/questions/756797/returning-a-partialview-with-both-html-and-javascript2Returning a PartialView with both HTML and JavaScript swilliams2009-04-16T15:55:33Z2009-06-03T00:22:56Z
<p>I am making an AJAX call (with jQuery) to retrieve a <code>PartialView</code>. Along with the HTML I'd like to send back a JSON representation of the object the View is displaying. The crappy way that I've been using is embedding properties as hidden inputs in the HTML, which quickly becomes unwieldy and tightly couples far too much stuff.</p>
<p>I could just send the JavaScript in a <code><script></code> tag after the HTML, but I'm really anal about keeping those things separate. That would look like this:</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" Inherits="System.Web.Mvc.ViewUserControl<Person>" %>
<div class="person">
First Name: <%= Html.TextBox("FirstName", Model.FirstName) %>
Last Name: <%= Html.TextBox("LastName", Model.LastName) %>
</div>
<script type="text/javascript">
// JsonSerialized object goes here
</script>
</code></pre>
<p>Another option I considered is to make a second AJAX call to an action that returns <code>JsonResult</code>, but that also feels like bad design.</p>
http://stackoverflow.com/questions/484489/is-there-a-way-to-programmatically-extract-an-interface/1728117#1728117Comment by swilliams on Is there a way to programmatically extract an Interface?swilliams2009-11-13T17:44:47Z2009-11-13T17:44:47ZOooh, me likely. Unfortunately I've moved on to a new client and don't need this any more, but thank you for a sweet answer nonetheless.http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversionComment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-09-02T00:13:56Z2009-09-02T00:13:56ZHey, maybe I'll just quote myself: "I agree completely, this is really just for curiosity."http://stackoverflow.com/questions/1359266/asp-net-mvc-how-do-i-send-text-xml-to-all-browsers-but-ie/1359367#1359367Comment by swilliams on ASP.NET MVC: How do I send "text/xml" to all browsers but IE?swilliams2009-08-31T21:00:53Z2009-08-31T21:00:53ZDefinitely, but unless there's another way...http://stackoverflow.com/questions/1358406/global-error-handling-outside-of-controller-in-asp-net-mvc/1358470#1358470Comment by swilliams on Global error handling (outside of controller) in ASP.NET MVCswilliams2009-08-31T17:32:05Z2009-08-31T17:32:05ZYes, HandleError won't actually do anything unless you have customErrors on in the config.http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversion/1358309#1358309Comment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T17:17:36Z2009-08-31T17:17:36ZLooks like StatSVN (just 2 s's) did what I needed. Thanks!http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversionComment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T16:56:43Z2009-08-31T16:56:43ZI agree completely, this is really just for curiousity. :)http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversion/1358309#1358309Comment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T16:56:00Z2009-08-31T16:56:00ZAs long as I can run the commandline tools via cygwin, it wouldn't be a problem. I'll take another gander at StatsSVN though.http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversion/1358275#1358275Comment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T16:55:18Z2009-08-31T16:55:18ZIs that only for a single file though? I'd like something for a whole project.http://stackoverflow.com/questions/1358251/how-to-determine-a-developers-total-contribution-to-subversionComment by swilliams on How to determine a developer's total contribution to SubVersion?swilliams2009-08-31T16:51:45Z2009-08-31T16:51:45ZI'm just curious about certain developer's contribution to the project.http://stackoverflow.com/questions/1349255/c-structs-real-life-examples/1349273#1349273Comment by swilliams on C# Structs - real life examples?swilliams2009-08-28T21:07:00Z2009-08-28T21:07:00ZI edited the answer to reflect your correction Guffa. http://stackoverflow.com/questions/756797/returning-a-partialview-with-both-html-and-javascriptComment by swilliams on Returning a PartialView with both HTML and JavaScript swilliams2009-08-27T21:20:25Z2009-08-27T21:20:25Z@Picflight - Same as you would a normal View and the $.post() or $.ajax() functions. The trick is to just return a PartialView in the Action. It's the same from the perspective of jQuery, an HTML response. My "real" solution is down below.http://stackoverflow.com/questions/1302267/using-a-guid-as-the-id-in-a-database-with-asp-net-mvc/1302349#1302349Comment by swilliams on Using a GUID as the ID in a database with ASP.NET MVCswilliams2009-08-19T21:36:10Z2009-08-19T21:36:10ZI generally create an Extensions folder in my project and put stuff like that and HtmlHelper extensions in there.http://stackoverflow.com/questions/1296043/boilerplate-to-serve-up-a-generated-file-from-asp-net/1296210#1296210Comment by swilliams on Boilerplate to serve up a generated file from ASP.NETswilliams2009-08-19T18:07:59Z2009-08-19T18:07:59Z...And that's basically the perfect way to edit a post. Thanks!http://stackoverflow.com/questions/1290189/how-do-i-make-a-beta-access-page-like-the-one-on-superuser-com/1290243#1290243Comment by swilliams on How do I make a beta access page like the one on superuser.com?swilliams2009-08-17T20:48:00Z2009-08-17T20:48:00ZYou can filter at the class level, which is much easier to manage.http://stackoverflow.com/questions/1173678/mvc-updatemodel-when-the-names-dont-match-up/1173823#1173823Comment by swilliams on MVC UpdateModel when the names don't match upswilliams2009-07-23T19:32:33Z2009-07-23T19:32:33ZThat works great. Thanks!