User Sean Lynch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T03:45:15Zhttp://stackoverflow.com/feeds/user/4043http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1641539/reference-problems-when-using-virtualpathprovider-to-dynamically-load-a-view0Reference problems when using VirtualPathProvider to dynamically load a viewSean Lynch2009-10-29T03:58:06Z2009-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(@"<%@ Control Language=""C#"" Inherits=""System.Web.Mvc.ViewUserControl"" %>
<%="Test"%>
");
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 <%="Test"%> to <%=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 <%=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#15446330Answer by Sean Lynch for Why does my ASP.NET MVC application work from a virtual directory, but not from a website?Sean Lynch2009-10-09T15:52:15Z2009-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#15400950Answer 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 Lynch2009-10-08T20:04:27Z2009-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#15394522Answer 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 Lynch2009-10-08T17:51:34Z2009-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><system.webServer>
<rewrite>
<rules>
<rule name="RequestBlockingRule1" patternSyntax="Wildcard">
<match url="*" />
<conditions>
<add input="{URL}" pattern="*.php*" />
</conditions>
<action type="CustomResponse" statusCode="403" />
</rule>
</rules>
</rewrite>
</system.webServer>
</code></pre>
http://stackoverflow.com/questions/1509475/asp-net-mvc-constructing-views-completely-off-custom-fields-in-db/1539171#15391711Answer by Sean Lynch for asp.net mvc - constructing views completely off custom fields in DBSean Lynch2009-10-08T17:02:12Z2009-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<Attribute> attributes, Type containerType, Func<object> 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<> or .EditorFor<> 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#15382980Answer by Sean Lynch for JSON request failing because of line breaks, how to escape them?Sean Lynch2009-10-08T14:46:39Z2009-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-mobile0Programmatic word completion dictionary in windows mobileSean Lynch2009-09-02T17:28:20Z2009-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#10758300Answer by Sean Lynch for Prevent asp.net mvc from generating URLs with subfoldersSean Lynch2009-07-02T18:02:03Z2009-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#9667600Answer by Sean Lynch for Using a user control in a base page classSean Lynch2009-06-08T20:15:03Z2009-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#692760Answer by Sean Lynch for Why did you become a programmer?Sean Lynch2008-09-16T03:55:56Z2008-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#400990Answer by Sean Lynch for Update Panel inside of a UserControl inside of a Repeater inside of another UpdatePanelSean Lynch2008-09-02T17:28:39Z2008-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#386883Answer by Sean Lynch for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008Sean Lynch2008-09-02T01:31:22Z2008-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><asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server">stest</asp:LinkButton>
</ItemTemplate>
</asp:Repeater>
</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-mvcComment by Sean Lynch on Accessing resources via Uri in Asp.net mvcSean Lynch2009-10-29T16:01:27Z2009-10-29T16:01:27ZAre you using asp.net mvc 1 or 2?http://stackoverflow.com/questions/1641539/reference-problems-when-using-virtualpathprovider-to-dynamically-load-a-view/1642075#1642075Comment by Sean Lynch on Reference problems when using VirtualPathProvider to dynamically load a viewSean Lynch2009-10-29T12:42:16Z2009-10-29T12:42:16ZI 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#1642075Comment by Sean Lynch on Reference problems when using VirtualPathProvider to dynamically load a viewSean Lynch2009-10-29T12:40:35Z2009-10-29T12:40:35ZMy 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-issueComment by Sean Lynch on asp.net mvc website issueSean Lynch2009-10-15T16:29:05Z2009-10-15T16:29:05ZI 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 "Event though it does it when its a MVC project"http://stackoverflow.com/questions/1556214/-causing-bad-request-in-urlsComment by Sean Lynch on '+' causing bad request in URL'sSean Lynch2009-10-12T19:22:16Z2009-10-12T19:22:16ZI disagree, this is more a question about ASP.Net MVC. He just gave context that he is running it on IIS7http://stackoverflow.com/questions/1543084/why-does-my-asp-net-mvc-application-work-from-a-virtual-directory-but-not-from-a/1544633#1544633Comment by Sean Lynch on Why does my ASP.NET MVC application work from a virtual directory, but not from a website?Sean Lynch2009-10-10T01:17:56Z2009-10-10T01:17:56ZDo both servers have the same user set up for the App Pool? http://stackoverflow.com/questions/1533326/hosting-a-asp-net-mvc-app/1544458#1544458Comment by Sean Lynch on Hosting a ASP.NET MVC appSean Lynch2009-10-09T15:20:24Z2009-10-09T15:20:24ZThey 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#1539452Comment 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 Lynch2009-10-08T19:40:39Z2009-10-08T19:40:39ZI 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#1539452Comment 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 Lynch2009-10-08T18:59:42Z2009-10-08T18:59:42ZBut 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#1539452Comment 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 Lynch2009-10-08T18:58:42Z2009-10-08T18:58:42ZYou 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-dbComment by Sean Lynch on asp.net mvc - constructing views completely off custom fields in DBSean Lynch2009-10-08T16:27:34Z2009-10-08T16:27:34ZAre 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-tablesComment by Sean Lynch on Asp.Net MVC View: Create and Relationship tablesSean Lynch2009-10-08T14:37:33Z2009-10-08T14:37:33ZWhat is the signature for the Action?http://stackoverflow.com/questions/1537757/asp-net-mvc-2-preview-2-display-directory-list-rather-than-home-indexComment by Sean Lynch on ASP.NET MVC 2 Preview 2 - display directory list rather than home/indexSean Lynch2009-10-08T14:32:36Z2009-10-08T14:32:36ZAre you running on IIS6 or IIS7?