User Zack Peterson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T01:44:37Z http://stackoverflow.com/feeds/user/83 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1784893/is-google-analytics-accurate 1 Is Google Analytics Accurate? Zack Peterson 2009-11-23T18:02:01Z 2009-11-24T15:50:13Z <p>My records show a particular page of my web site was visited 609 times between July 2 and November 15.</p> <p>Google Analytics reports only 238 page views during that time.</p> <p>I can't explain this discrepancy.</p> <p>For Google Analytics to track a page view event, the client browser must have JavaScript enabled and be able to access Google's servers. I doubt 60% of my visitors have either disabled JavaScript or firewalled outbound traffic to Google's tracking servers.</p> <p>Do you have any explanation?</p> <h2>More Info</h2> <p>My application simply puts a record into a database as it serves up a page.</p> <p>It doesn't do anything to distinguish a bot viewer from a human. </p> http://stackoverflow.com/questions/1766337/interface-system-web-mvc-ivalueprovider-cannot-be-indexed-because-it-has-no-def 0 Interface 'System.Web.Mvc.IValueProvider' cannot be indexed because it has no default property Zack Peterson 2009-11-19T20:37:00Z 2009-11-23T21:19:29Z <p>This used to work.</p> <pre><code>&lt;AcceptVerbs(HttpVerbs.Post)&gt; _ Function Widget(ByVal collection As FormCollection) As ActionResult ... If ... Then ModelState.AddModelError(...) ModelState.SetModelValue("Gadget", collection.ToValueProvider("Gizmo")) Return View() End If ... End Function </code></pre> <p>I upgraded to <strong>ASP.NET MVC 2 Beta</strong> and <strong>ASP.NET MVC 2 Futures Assembly for Beta</strong> and now <code>ToValueProvider()</code> fails with this compile-time error:</p> <blockquote> <p>Interface 'System.Web.Mvc.IValueProvider' cannot be indexed because it has no default property</p> </blockquote> <p>How do I use <code>ModelState.SetModelValue()</code> if not with <code>collection.ToValueProvider()</code>?</p> http://stackoverflow.com/questions/105039/how-do-i-open-a-gz-gzip-file 0 How do I open a .gz gzip file? [closed] Zack Peterson 2008-09-19T20:01:41Z 2009-11-22T21:55:51Z <p>I've been given a file with .gz extension. It's aparently a gzip (<a href="http://en.wikipedia.org/wiki/Gzip" rel="nofollow">GNU zip</a>) compressed file.</p> <p>What free Windows utility can I use to open it?</p> http://stackoverflow.com/questions/1766337/interface-system-web-mvc-ivalueprovider-cannot-be-indexed-because-it-has-no-def/1766401#1766401 0 Answer by Zack Peterson for Interface 'System.Web.Mvc.IValueProvider' cannot be indexed because it has no default property Zack Peterson 2009-11-19T20:47:30Z 2009-11-19T22:08:37Z <p>Just remove the string parameter.</p> <p>Wrong:</p> <pre><code>collection.ToValueProvider("Gizmo") </code></pre> <p>Correct:</p> <pre><code>collection.ToValueProvider() </code></pre> <p><hr></p> <h2>Update</h2> <p>Creates a new run-time error after published to web server:</p> <blockquote> <p>Method not found: 'System.Web.Mvc.IValueProvider System.Web.Mvc.FormCollection.ToValueProvider()'.</p> </blockquote> <p>Download and install <strong>.NET Framework 4 Beta 2</strong> onto web server.</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ded875c8-fe5e-4cc9-b973-2171b61fe982&amp;displaylang=en" rel="nofollow">Microsoft Download Center: Microsoft .NET Framework 4 Beta 2</a></p> http://stackoverflow.com/questions/428835/how-do-i-make-an-iphone-web-app-mimic-a-non-web-app 0 How do I make an iPhone web app mimic a non-web app? Zack Peterson 2009-01-09T16:52:27Z 2009-11-19T14:56:27Z <p>I've been considering making a quick little iPhone web app.</p> <p>I started reading about and experimenting with the special meta tags and attributes documented at <a href="https://developer.apple.com/webapps/index.php" rel="nofollow">Apple's Web Apps Dev Center</a>:</p> <ul> <li>viewport</li> <li>apple-mobile-web-app-capable</li> <li>apple-mobile-web-app-status-bar-style</li> <li>-webkit-border-radius</li> <li>-webkit-border-image</li> <li>autocorrect</li> <li>autocapitalize</li> <li>apple-touch-icon</li> <li>-webkit-text-size-adjust</li> </ul> <p>This got me thinking that there must be a good guide I can follow to best mimic the default style and behavior of the device's non-web applications.</p> <p>I then stumbled upon the <a href="http://joehewitt.com/" rel="nofollow">Joe Hewitt</a>'s <a href="http://code.google.com/p/iui/" rel="nofollow">iUI project</a>.</p> <p>It's got two demos that are pretty impressive:</p> <ul> <li><a href="http://iui.googlecode.com/svn/tags/REL-current/samples/music.html" rel="nofollow">Music Demo</a></li> <li><a href="http://iui.googlecode.com/svn/tags/REL-current/samples/digg/index.html" rel="nofollow">Digg Demo</a></li> </ul> <p>Are there alternative libraries, guides, or other resources I should use?</p> http://stackoverflow.com/questions/111543/tortoisesvn-error-options-of-https-could-not-connect-to-server 0 TortoiseSVN Error: "OPTIONS of 'https://...' could not connect to server (...)" Zack Peterson 2008-09-21T17:52:13Z 2009-11-16T16:02:01Z <p>I'm trying to setup a new computer to synchronize with my SVN repository that's hosted with cvsdude.com.</p> <p>I get this error:</p> <p><img src="http://img502.imageshack.us/img502/74/checkoutcc4.gif" alt="SVN Error" /></p> <p>Here's what I did (these have worked in the past):</p> <ol> <li><p>Downloaded and installed TortoiseSVN</p></li> <li><p>Created a new folder C:\aspwebsite</p></li> <li><p>Right-clicked, chose SVN Checkout...</p></li> <li><p>Entered the following information, clicked OK:</p> <ul> <li>URL of repository: https://&lt;reponame&gt;-svn.cvsdude.com/aspwebsite</li> <li>Checkout directory: C:\aspwebsite</li> <li>Checkout depth: Fully recursive</li> <li>Omit externals: Unchecked</li> <li>Revision: HEAD revision</li> </ul></li> <li><p>Got TortoiseSVN error:</p> <ul> <li>OPTIONS of 'https://&lt;reponame&gt;-svn.cvsdude.com/aspwebsite': could not connect to server (https://&lt;reponame&gt;-svn.cvsdude.com)</li> </ul></li> </ol> <p>Rather than getting the error, TortoiseSVN should have asked for my username and password and then downloaded about 90MB.</p> <p>Why can't I checkout from my Subversion repository?</p> <p><hr /></p> <blockquote> <p><a href="http://stackoverflow.com/users/15614/kent-fredric">Kent Fredric</a> wrote:</p> <p>Either their security certificate has expired, or their hosting is broken/down.</p> <p>Contact CVSDude and ask them whats up.</p> <p>It could also be a timeout, because for me their site is <em>exhaustively</em> slow..</p> </blockquote> <p>It errors after only a couple seconds. I don't think it's a timeout.</p> <blockquote> <p><a href="http://stackoverflow.com/users/2590/matt">Matt</a> wrote:</p> <p>Try visiting https://[redacted]-svn.cvsdude.com/aspwebsite and see what happens. If you can visit it in your browser, you ought to be able to get the files in your SVN client and we can work from there. If it fails, then there's your answer.</p> </blockquote> <p>I can access the site in a web browser.</p> http://stackoverflow.com/questions/250742/who-sells-the-cheapest-ev-ssl-certificate 10 Who sells the cheapest EV SSL certificate? Zack Peterson 2008-10-30T16:00:36Z 2009-11-15T18:12:59Z <p>I want a SSL certificate for my web site that will not only be accepted without warning by all popular browsers (at least accepted by <a href="http://www.mozilla.org/projects/security/certs/included/#DigiCert" rel="nofollow">Firefox</a> and <a href="http://support.microsoft.com/kb/931125" rel="nofollow">Internet Explorer</a>), but also give my visitors the green address bar.</p> <p>Which certificate authority is selling the least expensive <a href="http://en.wikipedia.org/wiki/Extended_Validation_Certificate" rel="nofollow">extended validation</a> SSL certificates?</p> <p><img src="http://img204.imageshack.us/img204/4838/ebayssliequ5.gif" alt="SSL EV in Microsoft Internet Explorer" /></p> <p><img src="http://img517.imageshack.us/img517/4854/ebaysslffyc0.gif" alt="SSL EV in Mozilla Firefox" /></p> http://stackoverflow.com/questions/1710731/ado-net-entity-framework-isloaded-and-load 1 ADO.NET Entity Framework IsLoaded and Load Zack Peterson 2009-11-10T19:54:42Z 2009-11-13T10:02:14Z <p>I find myself repeating bits of code like this over and over while using ADO.NET Entity Framework.</p> <p>VB:</p> <pre><code>' Load the thing if not already loaded. ' If Not Something.Thing.IsLoaded Then Something.Thing.Load() End If </code></pre> <p>C#:</p> <pre><code>// Load the thing if not already loaded. if (!Something.Thing.IsLoaded) { Something.Thing.Load(); } </code></pre> <p>Is this normal? Should I be using <a href="http://msdn.microsoft.com/en-us/library/system.data.objects.dataclasses.relatedend.isloaded.aspx" rel="nofollow">IsLoaded</a> and <a href="http://msdn.microsoft.com/en-us/library/system.data.objects.dataclasses.relatedend.load.aspx" rel="nofollow">Load</a> so often? Or am I not using this correctly?</p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application 39 How do I programmatically create a PDF in my .NET application? Zack Peterson 2008-08-01T18:37:55Z 2009-11-10T17:11:22Z <p>Please recommend a good library for programmatically creating PDF documents in .NET applications. Thanks.</p> http://stackoverflow.com/questions/1702776/can-i-nest-orderby-in-net 1 Can I Nest OrderBy in .NET? Zack Peterson 2009-11-09T18:20:11Z 2009-11-09T18:42:04Z <p>This doesn't seem to work as I intend.</p> <p>VB.NET:</p> <pre><code>Dim x = Model.Discussions.OrderByDescending(Function(d) d.Messages.OrderByDescending(Function(m) m.Sent).First.Sent) For Each d As Discussion In x ... Next </code></pre> <p>I get this runtime error:</p> <blockquote> <p>Sequence contains no elements</p> </blockquote> <p>There should be 20.</p> <p>Discussions are collections of messages.</p> <p>I want to sort my discussions by the age of the newest message of each.</p> <h2>Clarification</h2> <p>I need to sort my discussions, not my messages. I want to sort my discussions by an aggregate calculation: MAX(Sent) among the messages of each.</p> http://stackoverflow.com/questions/1645999/requirehttps-fails-on-redirects-with-parameters 0 RequireHttps Fails On Redirects with Parameters Zack Peterson 2009-10-29T19:26:47Z 2009-11-06T06:25:36Z <p>Besides simply redirecting from HTTP to HTTPS, the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute%28VS.100%29.aspx" rel="nofollow">RequireHttps</a> attribute also changes my URL's question mark <code>?</code> to <code>%3F</code>. Unsurprisingly, that breaks things.</p> <p>Why? How do I fix it?</p> <h2>scenario:</h2> <ol> <li><p>I try to navigate to <code>http://www.example.com/message/compose</code></p></li> <li><p>But let's say I don't have permission to view that page.</p> <pre><code>&lt;HandleError()&gt; _ Public Class MessageController Inherits System.Web.Mvc.Controller <pre><code>Function Compose() As ActionResult ... If ... Then Throw New Exception(Net.HttpStatusCode.Unauthorized.ToString) End If ... Return View() End Function ... </code></pre> End Class </code></pre></li> <li><p>The action throws an exception.</p></li> <li><p>The exception is handled by my Error.aspx page</p> <pre><code>&lt;%@ Page Language="VB" Inherits="System.Web.Mvc.ViewPage(Of System.Web.Mvc.HandleErrorInfo)" %&gt; &lt;script runat="server"&gt; Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs) If Model.Exception.Message = Net.HttpStatusCode.Unauthorized.ToString Then response.redirect("/signin?ReturnUrl=" + Url.Encode(request.Path)) End If ... End Sub &lt;/script&gt; ... </code></pre></li> <li><p>I'm redirected to my Sign In page at <code>http://www.example.com/signin?ReturnUrl=%2fmessage%2fcompose</code></p></li> <li><p>But I'm using HTTP and not HTTPS. My action requires HTTPS. (That <a href="http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only/1639831#1639831">RemoteRequireHttps</a> inherits from <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute%28VS.100%29.aspx" rel="nofollow">RequireHttps</a> and overrides its OnAuthorization method to simply disregard localhost.)</p> <pre><code>&lt;HandleError()&gt; _ Public Class AccountController Inherits System.Web.Mvc.Controller <pre><code>&amp;lt;RemoteRequireHttps()&amp;gt; _ Function SignIn() As ActionResult ... End Function ... </code></pre> End Class </code></pre></li> <li><p>I'm redirected to <code>https://www.example.com/signin%3FReturnUrl=%2fmessage%2fcompose</code></p></li> <li><p>I see this error in my browser:</p></li> </ol> <blockquote> <p>Bad Request</p> </blockquote> <p>It seems that RequireHttps changes my question mark <code>?</code> to <code>%3F</code>.</p> http://stackoverflow.com/questions/173/how-do-i-version-my-ms-sql-database-in-svn 51 How do I version my MS SQL database in SVN? Zack Peterson 2008-08-01T18:33:08Z 2009-11-02T22:17:17Z <p>I've been wanting to get my databases under version control. Does anyone have any advice or recommended articles to get me started?</p> <p>I'll always want to have at least <em>some</em> data in there (as <a href="http://beta.stackoverflow.com/users/80/alumb" rel="nofollow">alumb</a> mentions: user types and administrators). And I'll probably often want a large collection of generated test data for performance measurement.</p> http://stackoverflow.com/questions/1645999/requirehttps-fails-on-redirects-with-parameters/1646759#1646759 0 Answer by Zack Peterson for RequireHttps Fails On Redirects with Parameters Zack Peterson 2009-10-29T21:44:01Z 2009-10-29T21:44:01Z <p>I've just reengineered this to avoid the question mark (and also exception throws) altogether.</p> <h2>scenario:</h2> <p>I try to navigate to <code>http://www.example.com/message/compose</code></p> <p>But let's say I don't have permission to view that page.</p> <pre><code>Public Class MessageController Inherits System.Web.Mvc.Controller Function Compose() As ActionResult ... If ... Then Return RedirectToAction("SignIn", "Account", New With {.ReturnUrl = Request.Path}) End If ... Return View() End Function ... End Class </code></pre> <p>I'm redirected to my Sign In page. My route looks like this:</p> <pre><code>routes.MapRoute( _ "SignIn", _ "signin/{*ReturnUrl}", _ New With {.controller = "Account", _ .action = "SignIn", _ .ReturnUrl = ""} _ ) </code></pre> <p>So that's at address <code>http://www.example.com/signin/message/compose</code></p> <p>But I'm using HTTP and not HTTPS. My action requires HTTPS.</p> <pre><code>Public Class AccountController Inherits System.Web.Mvc.Controller &lt;RemoteRequireHttps()&gt; _ Function SignIn(ByVal ReturnUrl As String) As ActionResult ... End Function ... End Class </code></pre> <p>I'm redirected to <code>https://www.example.com/signin/message/compose</code></p> <p>No question mark. No problem.</p> http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only 7 ASP.NET MVC RequireHttps in Production Only Zack Peterson 2009-10-28T19:57:39Z 2009-10-28T23:10:35Z <p>I want to use the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute%28VS.100%29.aspx" rel="nofollow">RequireHttpsAttribute</a> to prevent unsecured HTTP requests from being sent to an action method.</p> <p>C#</p> <pre><code>[RequireHttps] //apply to all actions in controller public class SomeController { [RequireHttps] //apply to this action only public ActionResult SomeAction() { ... } } </code></pre> <p>VB</p> <pre><code>&lt;RequireHttps()&gt; _ Public Class SomeController &lt;RequireHttps()&gt; _ Public Function SomeAction() As ActionResult ... End Function End Class </code></pre> <p>Unfortunately, ASP.NET Development Server doesn't support HTTPS.</p> <p>How can I make my ASP.NET MVC application use RequireHttps when published to the production environment, but not when run on my development workstation on the ASP.NET Development Server?</p> http://stackoverflow.com/questions/212775/what-online-services-mail-coded-postcards-for-address-verification 2 What online services mail coded postcards for address verification? Zack Peterson 2008-10-17T16:04:15Z 2009-10-27T19:35:58Z <p>At about 24:20 in Stack Overflow <a href="https://stackoverflow.fogbugz.com/default.asp?W25802" rel="nofollow">Podcast 26</a> Joel Spolsky said there are services that mail postcards with codes for address verification.</p> <blockquote> <p><strong>Spolsky:</strong> You know what we could have badges for? We could have badges for like: "Real Address". Like I have proven that you live at a certain address.</p> <p><strong>Atwood:</strong> We could.</p> <p><strong>Spolsky:</strong> And then certain things could only be turned on if we can actually go to your house. Not that we will. But we could.</p> <p><strong>Atwood:</strong> We could.</p> <p><strong>Spolsky:</strong> And then you just use one of these--there are these online services that will mail a postcard to an address with a, you know, with a code on it, and if they type it in correctly then you register that they at least control the mail that goes to that address.</p> </blockquote> <p>What companies offer these services? Have you used one? How was the experience?</p> http://stackoverflow.com/questions/1533761/jquery-email-address-input 1 jQuery Email Address Input Zack Peterson 2009-10-07T19:44:14Z 2009-10-26T15:16:18Z <p>I'd like an autocomplete/autoformat "To" field on my web site that works like the one in GMail:</p> <p><img src="http://img14.imageshack.us/img14/4516/gmailto.gif" alt="GMail To Field" /></p> <p>Does anyone know of such a thing for jQuery?</p> <p>Plain JavaScript? Or any other alternatives?</p> http://stackoverflow.com/questions/1602846/is-there-a-xaml-wpf-silverlight-style-guide 1 Is there a XAML/WPF/Silverlight style guide? Zack Peterson 2009-10-21T18:54:09Z 2009-10-22T20:59:19Z <p>From <a href="http://www.dotnetrocks.com/default.aspx?showNum=0488" rel="nofollow">.NET Rocks! Show #488</a>:</p> <blockquote> <p><strong>Richard Campbell:</strong> "In the GDI world we got a document from Microsoft that said you will build your apps in battleship gray and here's now they should look: File goes here and Help goes here, and we all got that as developers. There's no book like that for WPF. There was this idea I've got to find the guy in a black turtleneck and here is his piece of software and you guys go play nice now."</p> </blockquote> <p>I think Microsoft now wants every Windows application to look like the ugly, difficult-to-use, hardware-bundled crapware we all hate!</p> <p>Is there no such best-practices document?</p> http://stackoverflow.com/questions/1608616/javascript-to-manipulate-copied-text 1 JavaScript to Manipulate Copied Text Zack Peterson 2009-10-22T17:04:27Z 2009-10-22T17:18:04Z <p>I copied come text from a <a href="http://www.huffingtonpost.com/" rel="nofollow">The Huffington Post</a> article and found that the web site had somehow snuck a citation onto my clipboard:</p> <blockquote> <p>The text I had selected. Blah. Blah. Blah.</p> <p>Read more at: <a href="http://www.huffingtonpost.com/" rel="nofollow">http://www.huffingtonpost.com/</a>...</p> </blockquote> <p>How did they do that?</p> http://stackoverflow.com/questions/675319/is-there-an-asp-net-mvc-htmlhelper-for-image-links 0 Is there an ASP.NET MVC HtmlHelper for image links? Zack Peterson 2009-03-23T21:33:14Z 2009-10-22T15:58:51Z <p>The Html.RouteLink() HtmlHelper works great for text links. But what's the best way to link an image?</p> http://stackoverflow.com/questions/1595922/nested-updatepanel-triggers 1 Nested UpdatePanel Triggers Zack Peterson 2009-10-20T16:45:00Z 2009-10-21T18:47:48Z <p>My child UpdatePanel updates both its contents and those of its parent UpdatePanel.</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel1" runat="server"&gt; ... &lt;asp:UpdatePanel ID="UpdatePanel2" runat="server"&gt; ... &lt;/asp:UpdatePanel&gt; ... &lt;/asp:UpdatePanel&gt; </code></pre> <p>I don't want my parent UpdatePanel to be updated every time its child updates.</p> http://stackoverflow.com/questions/441038/asp-net-updatepanel-error-htmlfile-unknown-runtime-error-updatepanelelement-inn 0 ASP.NET UpdatePanel Error htmlfile: Unknown runtime error, updatePanelElement.innerHTML=rendering Zack Peterson 2009-01-13T22:11:58Z 2009-10-21T17:53:23Z <p>I get this error when debugging my ASP.NET web application after I trigger an UpdatePanel:</p> <p><img src="http://i44.tinypic.com/25jjat0.gif" alt="ASP.NET htmlfile: Unknown runtime error updatePanelElement.innerHTML=rendering" /></p> <p>htmlfile: Unknown runtime error</p> <p>and "updatePanelElement.innerHTML=rendering" is hilighted in a ScriptResource.axd file.</p> http://stackoverflow.com/questions/1595922/nested-updatepanel-triggers/1595923#1595923 2 Answer by Zack Peterson for Nested UpdatePanel Triggers Zack Peterson 2009-10-20T16:46:00Z 2009-10-20T16:46:00Z <p>Set the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.updatepanel.updatemode.aspx" rel="nofollow">UpdatePanel.UpdateMode Property</a> to <code>Conditional</code>.</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server"&gt; ... &lt;/asp:UpdatePanel&gt; </code></pre> <p><a href="http://geekswithblogs.net/ranganh/archive/2007/05/16/112525.aspx" rel="nofollow">Project Cool</a>:</p> <blockquote> <p>Child Update Panel refreshes only its contents and doesnt refresh that of the Parent Update Panel unless, the update mode for the parent update panel is not set to Conditional</p> </blockquote> <p><a href="http://codeclimber.net.nz/archive/2007/05/24/updatemode-default-value-for-the-updatepanel-is-always.aspx" rel="nofollow">CodeClimber</a>:</p> <blockquote> <p>When set to Conditional, the UpdatePanel will be updated only on postback originated by controls inside the panel or from the triggers specified. So, if you have multiple update panels and you don't want to update all of them to be updated every time, you have to set the UpdateMode to Conditional.</p> </blockquote> http://stackoverflow.com/questions/899734/strongly-typed-asp-net-mvc-with-entity-framework 1 Strongly-Typed ASP.NET MVC with Entity Framework Zack Peterson 2009-05-22T20:04:39Z 2009-10-20T13:41:10Z <p>This code fails to actually save any changes:</p> <pre><code>// // POST: /SomeType/Edit/5 [AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(Guid id, SomeType Model) { db.AttachTo(Model.GetType().Name, Model); db.ApplyPropertyChanges(Model.EntityKey.EntitySetName, Model); db.SaveChanges(); return RedirectToAction("Index"); } </code></pre> <p>ASP.NET MVC creates the object Model as a Department type EntityObject with an EntityState value of <strong>Detached</strong>.</p> <p>After using the <em>AttachTo</em> method, its EntityState becomes <strong>Unchanged</strong>.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb896271.aspx" rel="nofollow">MSDN on Attaching Objects (Entity Framework)</a></p> <blockquote> <p>Objects are attached to the object context in an <strong>Unchanged</strong> state.</p> </blockquote> <p>Because of its <strong>Unchanged</strong> state, the method <em>ApplyPropertyChanges</em> does nothing.</p> <p>I want it to instead have state <strong>Modified</strong>.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.data.entitystate.aspx" rel="nofollow">MSDN on EntityState Enumeration</a></p> <blockquote> <p><strong>Detached</strong><br /> The object exists but it is not being tracked by Object Services. An entity is in this state immediately after it has been created and before it is added to the object context. An entity is also in this state after it has been removed from the context by calling the Detach method or if it is loaded using a NoTrackingMergeOption.</p> <p><strong>Unchanged</strong><br /> The object has not been modified since it was loaded into the context or since the last time that the SaveChanges method was called.</p> <p><strong>Modified</strong><br /> The object is changed but the SaveChanges method has not been called.</p> </blockquote> <p>I cannot explicitly set an EntityObject's EntityState property to <strong>Modified</strong>. It is read only.</p> <p>Is it just impossible to have strongly-typed MVC controllers with EntityObjects?</p> http://stackoverflow.com/questions/1477590/maskededitextender-is-too-hard-to-use-for-money 0 MaskedEditExtender Is Too Hard to Use For Money Zack Peterson 2009-09-25T14:23:20Z 2009-10-16T14:15:16Z <p>The MaskedEditExtender does a good job of enforcing the rules, but my users have trouble typing into its TextBox.</p> <p>I want to select all the contents of my TextBox when it gains focus.</p> <p>A regular JavaScript solution does not work.</p> <pre><code>onfocus="javascript:this.select();" </code></pre> <p>The MaskedEditExtender interferes.</p> <p>How can I select all the contents of the TextBox when it gains focus?</p> <pre><code>&lt;asp:TextBox ID="TextBoxPrice" runat="server" /&gt; &lt;ajaxToolkit:MaskedEditExtender ID="MaskedEditExtenderTextBoxPrice" runat="server" TargetControlID="TextBoxPrice" Mask="9,999.99" MaskType="Number" MessageValidatorTip="False" OnFocusCssClass="MaskedEditFocus" OnInvalidCssClass="MaskedEditError" InputDirection="RightToLeft" AcceptNegative="None" DisplayMoney="Left" /&gt; &lt;ajaxToolkit:MaskedEditValidator ID="MaskedEditValidatorTextBoxPrice" runat="server" ControlToValidate="TextBoxPrice" ControlExtender="MaskedEditExtenderTextBoxPrice" Display="Dynamic" IsValidEmpty="False" EmptyValueMessage="Price is required" InvalidValueMessage="Price is invalid" MinimumValue= "0.01" MinimumValueMessage="Price is too small" MaximumValue="9999.99" MaximumValueMessage="Price is too large" /&gt; </code></pre> http://stackoverflow.com/questions/1574347/asp-net-mvc-requirehttps 1 ASP.NET MVC RequireHttps Zack Peterson 2009-10-15T18:59:21Z 2009-10-15T22:30:51Z <p>How do I use the ASP.NET MVC 2 Preview 2 Futures RequireHttps attribute?</p> <p>I want to prevent unsecured HTTP requests from being sent to an action method. I want to automatically redirect to HTTPS.</p> <p>MSDN: </p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute%28VS.100%29.aspx" rel="nofollow">RequireHttpsAttribute</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute%5Fmembers%28VS.100%29.aspx" rel="nofollow">RequireHttpsAttribute Members</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.requirehttpsattribute.handlenonhttpsrequest%28VS.100%29.aspx" rel="nofollow">RequireHttpsAttribute.HandleNonHttpsRequest Method</a></li> </ul> <p>How do I use this feature?</p> http://stackoverflow.com/questions/345396/mvc-radiobuttonlist/711442#711442 2 Answer by Zack Peterson for MVC & RadioButtonList Zack Peterson 2009-04-02T20:22:48Z 2009-10-13T20:49:57Z <p><a href="http://stackoverflow.com/users/4481/elijah-manor">Elijah Manor</a> wrote about the same trouble in ASP.NET MVC 1.0: </p> <p><a href="http://elijahmanor.com/webdevdotnet/search.aspx?q=radiobutton" rel="nofollow">ASP.NET MVC Html.RadioButtonList Blues</a></p> <p>He decided to loop through his DataSource and create individual Html.RadioButton and Label combinations.</p> <pre><code>&lt;!-- After using and looking at the code for the Html.RadioButtonList in the ASP.NET MVC 1.0 RTM codebase, I'm not sure how it is supposed to be useful. It only outputs the actual input radio button and doesn't render any corresponding labels. To get around this I ended up writing a foreach creating individual Html.RadioButton and labels --&gt; &lt;% var radioButtonList = new SelectList(new List&lt;ListItem&gt; { new ListItem { Text = "Current", Value="false", Selected=true }, new ListItem { Text = "Other", Value="true"}}, "Value", "Text", "false"); var htmlAttributes = new Dictionary&lt;string, object&gt; { { "class", "radioButtonList" }, { "onclick", "if(eval(this.value)) { $('#tblDate').show('slow'); } else { $('#tblDate').hide('slow'); }" } }; foreach (var radiobutton in radioButtonList) { %&gt; &lt;%=Html.RadioButton("rblDate", radiobutton.Value, radiobutton.Selected, htmlAttributes)%&gt; &lt;label&gt;&lt;%=radiobutton.Text%&gt;&lt;/label&gt; &lt;% } %&gt; </code></pre> http://stackoverflow.com/questions/40764/how-should-i-cast-in-vb-net 12 How should I cast in VB.NET? Zack Peterson 2008-09-02T21:49:32Z 2009-10-09T20:53:22Z <p>Are all of these equal? Under what circumstances should I choose each over the others?</p> <ul> <li><p>var.ToString()</p></li> <li><p>CStr(var)</p></li> <li><p>CType(var, String)</p></li> <li><p>DirectCast(var, String)</p></li> </ul> <p><hr /></p> <p><em>EDIT: Suggestion from <strong><a href="http://beta.stackoverflow.com/users/303/notmyself" rel="nofollow">NotMyself</a></strong>&hellip;</em></p> <ul> <li>TryCast(var, String)</li> </ul> http://stackoverflow.com/questions/1545538/asp-net-error-bc30456-title-is-not-a-member-of-asp-viewscontrollernameviewn 0 ASP.NET error BC30456: 'Title' is not a member of 'ASP.views_controllername_viewname_aspx'. Zack Peterson 2009-10-09T19:03:14Z 2009-10-09T19:05:22Z <p>My ASP.NET MVC application fails with this error:</p> <pre><code>BC30456: 'Title' is not a member of 'ASP.views_controllername_viewname_aspx'. </code></pre> <p>But, <em>Title</em> doesn't appear anywhere except the first line of my View.</p> <pre><code>&lt;%@ Page Title="" Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage(Of SomeThing)" %&gt; </code></pre> http://stackoverflow.com/questions/1545538/asp-net-error-bc30456-title-is-not-a-member-of-asp-viewscontrollernameviewn/1545553#1545553 0 Answer by Zack Peterson for ASP.NET error BC30456: 'Title' is not a member of 'ASP.views_controllername_viewname_aspx'. Zack Peterson 2009-10-09T19:05:22Z 2009-10-09T19:05:22Z <p>My strongly-typed view was of a non-existant type. I had changed the object's name.</p> <pre><code>&lt;%@ Page ... Inherits="System.Web.Mvc.ViewPage(Of CorrectThing)" %&gt; </code></pre> <p>vs.</p> <pre><code>&lt;%@ Page ... Inherits="System.Web.Mvc.ViewPage(Of WrongThing)" %&gt; </code></pre> http://stackoverflow.com/questions/81991/a-potentially-dangerous-request-form-value-was-detected-from-the-client/1540976#1540976 1 Answer by Zack Peterson for A potentially dangerous Request.Form value was detected from the client Zack Peterson 2009-10-08T22:56:30Z 2009-10-08T22:56:30Z <p>There's a different solution to this error if you're using ASP.NET MVC:</p> <ul> <li><a href="http://jwwishart.wordpress.com/2009/06/22/asp-net-mvc-pages-validaterequestfalse-doesnt-work/" rel="nofollow">ASP.NET MVC – pages validateRequest=false doesn’t work?</a></li> <li><a href="http://stackoverflow.com/questions/807662/why-is-validateinputfalse-not-working">Why is ValidateInput(False) not working?</a></li> <li><a href="http://weblogs.asp.net/rashid/archive/2009/02/14/asp-net-mvc-rc1-validateinput-a-potential-dangerous-request-and-the-pitfall.aspx" rel="nofollow">ASP.NET MVC RC1, VALIDATEINPUT, A POTENTIAL DANGEROUS REQUEST AND THE PITFALL</a></li> </ul> <p>Visual Basic sample:</p> <pre><code>&lt;AcceptVerbs(HttpVerbs.Post), ValidateInput(False)&gt; _ Function Edit(ByVal collection As FormCollection) As ActionResult ... End Function </code></pre> http://stackoverflow.com/questions/1784893/is-google-analytics-accurate/1784949#1784949 Comment by Zack Peterson on Is Google Analytics Accurate? Zack Peterson 2009-11-23T18:24:19Z 2009-11-23T18:24:19Z Total. Unique discounts repeat visitors, right? http://stackoverflow.com/questions/1784893/is-google-analytics-accurate/1784921#1784921 Comment by Zack Peterson on Is Google Analytics Accurate? Zack Peterson 2009-11-23T18:08:00Z 2009-11-23T18:08:00Z I guess it's possible 60% of my traffic to that page is the Googlebot or other spiders. That's pretty sad if true. http://stackoverflow.com/questions/1141073/whats-the-best-wysiwyg-editor-for-use-with-jquery/1141083#1141083 Comment by Zack Peterson on What's the best WYSIWYG Editor for use with jQuery? Zack Peterson 2009-11-12T20:39:54Z 2009-11-12T20:39:54Z It doesn't work well with Internet Explorer without tweaking. <a href="http://code.google.com/p/jwysiwyg/issues/detail?id=128#c0" rel="nofollow">code.google.com/p/jwysiwyg/&hellip;</a> http://stackoverflow.com/questions/1574347/asp-net-mvc-requirehttps/1574364#1574364 Comment by Zack Peterson on ASP.NET MVC RequireHttps Zack Peterson 2009-11-10T21:55:47Z 2009-11-10T21:55:47Z ASP.NET MVC RequireHttps in Production Only: <a href="http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only" rel="nofollow" title="asp net mvc requirehttps in production only">stackoverflow.com/questions/1639707/&hellip;</a> http://stackoverflow.com/questions/675319/is-there-an-asp-net-mvc-htmlhelper-for-image-links/675348#675348 Comment by Zack Peterson on Is there an ASP.NET MVC HtmlHelper for image links? Zack Peterson 2009-11-09T22:04:09Z 2009-11-09T22:04:09Z No tag-soup. Nice. http://stackoverflow.com/questions/1702776/can-i-nest-orderby-in-net/1702855#1702855 Comment by Zack Peterson on Can I Nest OrderBy in .NET? Zack Peterson 2009-11-09T18:45:50Z 2009-11-09T18:45:50Z All discussions do have 1 or more messages. But in this case they had not yet been loaded from the database. d.Messages.IsLoaded = False http://stackoverflow.com/questions/1702776/can-i-nest-orderby-in-net/1702855#1702855 Comment by Zack Peterson on Can I Nest OrderBy in .NET? Zack Peterson 2009-11-09T18:42:27Z 2009-11-09T18:42:27Z Perfect. Thank you. http://stackoverflow.com/questions/1702776/can-i-nest-orderby-in-net/1702809#1702809 Comment by Zack Peterson on Can I Nest OrderBy in .NET? Zack Peterson 2009-11-09T18:29:24Z 2009-11-09T18:29:24Z I don't think that sounds right. I want to sort my discussions by an aggregate calculation based on the messages of each. http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery/31157#31157 Comment by Zack Peterson on Is there an "exists" function for jQuery Zack Peterson 2009-11-09T15:27:40Z 2009-11-09T15:27:40Z Back in the day there was no comment feature. http://stackoverflow.com/questions/1645999/requirehttps-fails-on-redirects-with-parameters/1646154#1646154 Comment by Zack Peterson on RequireHttps Fails On Redirects with Parameters Zack Peterson 2009-10-29T21:51:11Z 2009-10-29T21:51:11Z It might be a better to handle it in IIS. I can't think of any uses where it would necessarily have to be at the application level. http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only/1639831#1639831 Comment by Zack Peterson on ASP.NET MVC RequireHttps in Production Only Zack Peterson 2009-10-29T20:26:29Z 2009-10-29T20:26:29Z Your RemoteRequireHttpsAttribute code works perfectly. That's much more elegant for VB than the conditional compilation. Thanks again Joel. http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only/1639831#1639831 Comment by Zack Peterson on ASP.NET MVC RequireHttps in Production Only Zack Peterson 2009-10-28T22:36:58Z 2009-10-28T22:36:58Z A little ugly, but it'll work. Thank you, Joel. http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only/1639831#1639831 Comment by Zack Peterson on ASP.NET MVC RequireHttps in Production Only Zack Peterson 2009-10-28T22:34:19Z 2009-10-28T22:34:19Z Sorry. VB code samples are getting harder and harder to come by. I didn't think it would matter. I've updated the original question. Do conditional compilation around attributes work for sure in C#? I haven't tested. That seems like a perfect, elegant solution. http://stackoverflow.com/questions/1460279/asp-net-mvc-asp-net-ajax-toolkit-autocompleteextender/1462265#1462265 Comment by Zack Peterson on ASP.NET MVC & ASP.NET AJAX Toolkit AutoCompleteExtender Zack Peterson 2009-10-26T16:45:53Z 2009-10-26T16:45:53Z I used jQuery instead. It worked well. <a href="http://stackoverflow.com/questions/1533761/jquery-email-address-input/1533790#1533790" rel="nofollow" title="jquery email address input">stackoverflow.com/questions/1533761/&hellip;</a> http://stackoverflow.com/questions/899734/strongly-typed-asp-net-mvc-with-entity-framework/1594689#1594689 Comment by Zack Peterson on Strongly-Typed ASP.NET MVC with Entity Framework Zack Peterson 2009-10-21T18:59:40Z 2009-10-21T18:59:40Z Try the &quot;Ask Question&quot; link to start a new Question. Your issue will get more attention.