User Sean Lynch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:45:15Z http://stackoverflow.com/feeds/user/4043 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1641539/reference-problems-when-using-virtualpathprovider-to-dynamically-load-a-view 0 Reference problems when using VirtualPathProvider to dynamically load a view Sean Lynch 2009-10-29T03:58:06Z 2009-10-29T18:41:17Z <p>I have the following set of classes that I used to dynamically load in a View. The code below works well when called with .RenderPartial. </p> <pre><code>public class VirtFile:VirtualFile { public VirtFile(string virtualPath) : base(virtualPath) { } public override Stream Open() { string path = this.VirtualPath; Stream str = new MemoryStream(); StreamWriter writer = new StreamWriter(str); writer.Write(@"&lt;%@ Control Language=""C#"" Inherits=""System.Web.Mvc.ViewUserControl"" %&gt; &lt;%="Test"%&gt; "); writer.Flush(); str.Position = 0; return str; } } public class Provider:VirtualPathProvider { public override System.Web.Caching.CacheDependency GetCacheDependency(string virtualPath, System.Collections.IEnumerable virtualPathDependencies, DateTime utcStart) { return null; var dependency = new System.Web.Caching.CacheDependency(virtualPath); return dependency;// base.GetCacheDependency(virtualPath, virtualPathDependencies, utcStart); } public override bool DirectoryExists(string virtualDir) { if (IsVirtual(virtualDir)) { return true; } return base.DirectoryExists(virtualDir); } public override bool FileExists(string virtualPath) { if (IsVirtual(virtualPath)) { return true; } return base.FileExists(virtualPath); } public override VirtualFile GetFile(string virtualPath) { if(IsVirtual(virtualPath)) { return new VirtFile(virtualPath); } return base.GetFile(virtualPath); } private bool IsVirtual(string virtualPath) { return virtualPath.Contains("Database"); } </code></pre> <p>But if I try to change the &lt;%="Test"%> to &lt;%=new Model.Category()%>, of create a typed View I get an error stating that "The type or namespace name 'Model' could not be found (are you missing a using directive or an assembly reference?)". However, the same code works if it is simply placed in an .ascx file.</p> <p>Am I missing something, it seems like wether the stream comes from the file system or a custom VirtualPathProvider it should have the same loaded assemblies, since &lt;%=AppDomain.CurrentDomain.ApplicationIdentity%> returns the same value from either the file system or the custom provider.</p> http://stackoverflow.com/questions/1543084/why-does-my-asp-net-mvc-application-work-from-a-virtual-directory-but-not-from-a/1544633#1544633 0 Answer by Sean Lynch for Why does my ASP.NET MVC application work from a virtual directory, but not from a website? Sean Lynch 2009-10-09T15:52:15Z 2009-10-09T15:52:15Z <p>You likely need to grant read/execute permission to the files/folder that you are deploying to for the windows account that the App Pool of the website on the remote server is running under.</p> http://stackoverflow.com/questions/1539415/how-do-i-block-requests-for-all-php-cgi-etc-pages-from-inside-an-asp-net-m/1540095#1540095 0 Answer by Sean Lynch for How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7? Sean Lynch 2009-10-08T20:04:27Z 2009-10-08T20:04:27Z <p>I found <a href="http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing">http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing</a> which might work for this, it uses the <a href="http://msdn.microsoft.com/en-us/library/system.web.routing.stoproutinghandler.aspx" rel="nofollow">StopRoutingHandler</a> class, and as long as the requests to .php do run through the routing this will probably work.</p> <p>If the .php requests are not going through the routing handler then this probably wouldn't work.</p> http://stackoverflow.com/questions/1539415/how-do-i-block-requests-for-all-php-cgi-etc-pages-from-inside-an-asp-net-m/1539452#1539452 2 Answer by Sean Lynch for How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7? Sean Lynch 2009-10-08T17:51:34Z 2009-10-08T19:36:43Z <p>If you hosting provider supports the IIS7 URL Rewrite module then you could check out this link:</p> <p><a href="http://learn.iis.net/page.aspx/499/request-blocking---rule-template/" rel="nofollow">http://learn.iis.net/page.aspx/499/request-blocking---rule-template/</a></p> <p>Update here is what you would put into your web.config in the system.webserver section:</p> <pre><code>&lt;system.webServer&gt; &lt;rewrite&gt; &lt;rules&gt; &lt;rule name="RequestBlockingRule1" patternSyntax="Wildcard"&gt; &lt;match url="*" /&gt; &lt;conditions&gt; &lt;add input="{URL}" pattern="*.php*" /&gt; &lt;/conditions&gt; &lt;action type="CustomResponse" statusCode="403" /&gt; &lt;/rule&gt; &lt;/rules&gt; &lt;/rewrite&gt; &lt;/system.webServer&gt; </code></pre> http://stackoverflow.com/questions/1509475/asp-net-mvc-constructing-views-completely-off-custom-fields-in-db/1539171#1539171 1 Answer by Sean Lynch for asp.net mvc - constructing views completely off custom fields in DB Sean Lynch 2009-10-08T17:02:12Z 2009-10-08T17:37:09Z <p>If you are able to use the Preview 2 of MVC 2 then you could accomplish this by inheriting from DataAnnotationsModelMetadataProvider, or ModelMetadata if you don't want the attribute based stuff at all. </p> <p>Then you would want to override the CreateMetadata method like:</p> <pre><code>public class MyMetadataProvider : DataAnnotationsModelMetadataProvider { protected override ModelMetadata CreateMetadata(IEnumerable&lt;Attribute&gt; attributes, Type containerType, Func&lt;object&gt; modelAccessor, Type modelType, string propertyName) { ModelMetadata metadata = base.CreateMetadata(attributes, containerType, modelAccessor, modelType, propertyName); bool show = true; /* Code to check if the fields should show */ metadata.ShowForDisplay = show; metadata.ShowForEdit = show; return metadata; } } </code></pre> <p>Then on your generic view do just call the .DisplayFor&lt;> or .EditorFor&lt;> like shown here <a href="http://weblogs.asp.net/scottgu/archive/2009/07/31/asp-net-mvc-v2-preview-1-released.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2009/07/31/asp-net-mvc-v2-preview-1-released.aspx</a>. </p> <p>Update:</p> <p>You would also need to set the <code>ModelMetadataProviders.Current = new MyMetadataProvider();</code> </p> http://stackoverflow.com/questions/998983/json-request-failing-because-of-line-breaks-how-to-escape-them/1538298#1538298 0 Answer by Sean Lynch for JSON request failing because of line breaks, how to escape them? Sean Lynch 2009-10-08T14:46:39Z 2009-10-08T14:46:39Z <p>You should be able to escape the line breaks by calling .Replace("\n","\n").</p> http://stackoverflow.com/questions/1369096/programmatic-word-completion-dictionary-in-windows-mobile 0 Programmatic word completion dictionary in windows mobile Sean Lynch 2009-09-02T17:28:20Z 2009-09-02T17:28:20Z <p>I would like to be able to specify what shows up in in the windows mobile word completion programmatically. </p> <p>I have looked around, and found some links on how to make the word completion match the context such as with <a href="http://www.christec.co.nz/blog/archives/631" rel="nofollow">http://www.christec.co.nz/blog/archives/631</a>. But nothing that would allow me to specify specific words that will show up, based on what else is on the line.</p> <p>I can work around this with Window Mobile Professional with a context menu. However, this option is not available with the Standard edition. Plus when the return is hit for a textbox with Standard the screen changes to just the textbox with the Word completion the only thing that shows over top of it.</p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/445022/prevent-asp-net-mvc-from-generating-urls-with-subfolders/1075830#1075830 0 Answer by Sean Lynch for Prevent asp.net mvc from generating URLs with subfolders Sean Lynch 2009-07-02T18:02:03Z 2009-07-02T18:02:03Z <p>In your route class override the GetVirtualPath method having it add "../" to the beginning of the Url property of the VirtualPathData object returned by the base.GetVirtualPath call.</p> http://stackoverflow.com/questions/894492/using-a-user-control-in-a-base-page-class/966760#966760 0 Answer by Sean Lynch for Using a user control in a base page class Sean Lynch 2009-06-08T20:15:03Z 2009-06-08T20:15:03Z <p>Assuming that you will be running in an environment that supports reflection you could use these methods.</p> <pre><code>private void SetValue(Control control, string propertyName, object value) { Type type = control.GetType(); PropertyInfo property = type.GetProperty(propertyName); property.SetValue(control, value, null); } private object GetValue(Control control, string propertyName) { Type type = control.GetType(); PropertyInfo property = type.GetProperty(propertyName); return property.GetValue(control, null); } </code></pre> <p>And call it like this:</p> <pre><code> Control control = this.LoadControl("~/SpiffyControl.ascx"); string propertyName = "Custom1"; object value = "Value"; SetValue(control, propertyName, value); </code></pre> <p>If it gets called a lot you might want to cache the Type information.</p> <p>You could also consider creating an ISpiffyControl interface in the assembly SpiffyPage is in, then have your user control implement it.</p> http://stackoverflow.com/questions/68675/why-did-you-become-a-programmer/69276#69276 0 Answer by Sean Lynch for Why did you become a programmer? Sean Lynch 2008-09-16T03:55:56Z 2008-09-16T03:55:56Z <p>Because its the only one of my hobbies that I could convince someone to pay me to do.</p> http://stackoverflow.com/questions/30770/update-panel-inside-of-a-usercontrol-inside-of-a-repeater-inside-of-another-updat/40099#40099 0 Answer by Sean Lynch for Update Panel inside of a UserControl inside of a Repeater inside of another UpdatePanel Sean Lynch 2008-09-02T17:28:39Z 2008-09-02T17:28:39Z <p>If you set the UpdateMode property to Conditional (default is Always) on both UpdatePanels it should stop the outer UpdatePanel triggering when only the usercontrols updatepanel should have refreshed.</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38688#38688 3 Answer by Sean Lynch for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Sean Lynch 2008-09-02T01:31:22Z 2008-09-02T01:31:22Z <p>Is the control that you are trying to reference inside of the repeater?</p> <p>If so then you need to look them up using the FindControl method.</p> <p>For example for:</p> <pre><code>&lt;asp:Repeater ID="Repeater1" runat="server"&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton ID="LinkButton1" runat="server"&gt;stest&lt;/asp:LinkButton&gt; &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> <p>You would need to do this to reference it:</p> <pre><code>LinkButton lb = Repeater1.FindControl("LinkButton1"); </code></pre> http://stackoverflow.com/questions/1644754/accessing-resources-via-uri-in-asp-net-mvc Comment by Sean Lynch on Accessing resources via Uri in Asp.net mvc Sean Lynch 2009-10-29T16:01:27Z 2009-10-29T16:01:27Z Are you using asp.net mvc 1 or 2? http://stackoverflow.com/questions/1641539/reference-problems-when-using-virtualpathprovider-to-dynamically-load-a-view/1642075#1642075 Comment by Sean Lynch on Reference problems when using VirtualPathProvider to dynamically load a view Sean Lynch 2009-10-29T12:42:16Z 2009-10-29T12:42:16Z I am not sure what you mean by full path to my classes. http://stackoverflow.com/questions/1641539/reference-problems-when-using-virtualpathprovider-to-dynamically-load-a-view/1642075#1642075 Comment by Sean Lynch on Reference problems when using VirtualPathProvider to dynamically load a view Sean Lynch 2009-10-29T12:40:35Z 2009-10-29T12:40:35Z My Model is basically public class Category{ public int Id{get;set;} public string Title{get;set;} public string Description{get;set;} public Category Parent{get;set;} } I have added the Model.Category namespace to the web applications web.config. http://stackoverflow.com/questions/1571414/asp-net-mvc-website-issue Comment by Sean Lynch on asp.net mvc website issue Sean Lynch 2009-10-15T16:29:05Z 2009-10-15T16:29:05Z I suspect its because he wants to be able to press F5 to test it. What I am not sure about is what do mean by &quot;Event though it does it when its a MVC project&quot; http://stackoverflow.com/questions/1556214/-causing-bad-request-in-urls Comment by Sean Lynch on '+' causing bad request in URL's Sean Lynch 2009-10-12T19:22:16Z 2009-10-12T19:22:16Z I disagree, this is more a question about ASP.Net MVC. He just gave context that he is running it on IIS7 http://stackoverflow.com/questions/1543084/why-does-my-asp-net-mvc-application-work-from-a-virtual-directory-but-not-from-a/1544633#1544633 Comment by Sean Lynch on Why does my ASP.NET MVC application work from a virtual directory, but not from a website? Sean Lynch 2009-10-10T01:17:56Z 2009-10-10T01:17:56Z Do both servers have the same user set up for the App Pool? http://stackoverflow.com/questions/1533326/hosting-a-asp-net-mvc-app/1544458#1544458 Comment by Sean Lynch on Hosting a ASP.NET MVC app Sean Lynch 2009-10-09T15:20:24Z 2009-10-09T15:20:24Z They also have the added benefit of supporting 3.5SP1 which godaddy currently does not. http://stackoverflow.com/questions/1539415/how-do-i-block-requests-for-all-php-cgi-etc-pages-from-inside-an-asp-net-m/1539452#1539452 Comment by Sean Lynch on How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7? Sean Lynch 2009-10-08T19:40:39Z 2009-10-08T19:40:39Z I have added the code for the web.config that IIS Manager generated. http://stackoverflow.com/questions/1539415/how-do-i-block-requests-for-all-php-cgi-etc-pages-from-inside-an-asp-net-m/1539452#1539452 Comment by Sean Lynch on How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7? Sean Lynch 2009-10-08T18:59:42Z 2009-10-08T18:59:42Z But I have done it was the path rewriting, and just copied the web.config up. http://stackoverflow.com/questions/1539415/how-do-i-block-requests-for-all-php-cgi-etc-pages-from-inside-an-asp-net-m/1539452#1539452 Comment by Sean Lynch on How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7? Sean Lynch 2009-10-08T18:58:42Z 2009-10-08T18:58:42Z You can define the rules in the web.config of your application, so don't need to use IIS Manager to configure them. However, I am not sure of the exact XML that would be used though. I don't have access to IIS Manager right now to try it out. http://stackoverflow.com/questions/1509475/asp-net-mvc-constructing-views-completely-off-custom-fields-in-db Comment by Sean Lynch on asp.net mvc - constructing views completely off custom fields in DB Sean Lynch 2009-10-08T16:27:34Z 2009-10-08T16:27:34Z Are you able to use the MVC 2 Preview 2 version of ASP.Net MVC? http://stackoverflow.com/questions/1536963/asp-net-mvc-view-create-and-relationship-tables Comment by Sean Lynch on Asp.Net MVC View: Create and Relationship tables Sean Lynch 2009-10-08T14:37:33Z 2009-10-08T14:37:33Z What is the signature for the Action? http://stackoverflow.com/questions/1537757/asp-net-mvc-2-preview-2-display-directory-list-rather-than-home-index Comment by Sean Lynch on ASP.NET MVC 2 Preview 2 - display directory list rather than home/index Sean Lynch 2009-10-08T14:32:36Z 2009-10-08T14:32:36Z Are you running on IIS6 or IIS7?