User John Sheehan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T15:23:24Zhttp://stackoverflow.com/feeds/user/1786http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876877/how-can-i-call-edit-formatdocument-on-a-file-from-within-a-t4-template0How can I call Edit.FormatDocument on a file from within a T4 template?John Sheehan2009-12-09T21:06:22Z2009-12-09T21:06:22Z
<p>I've got a T4 template (also using the T4Toolbox) that scans a folder for files, then processes them and kicks out .cs files. When the processing from the template is done, I want to format them with VS. I've got this far:</p>
<pre><code>IServiceProvider hostServiceProvider = (IServiceProvider)Host;
EnvDTE.DTE dte = (EnvDTE.DTE)hostServiceProvider.GetService(typeof(EnvDTE.DTE));
dte.ExecuteCommand("File.OpenFile", newFile); // newFile is full path to file
dte.ExecuteCommand("Edit.FormatDocument", string.Empty);
</code></pre>
<p>This only works if the file is open and I don't know how to save the changes. Any pointers?</p>
http://stackoverflow.com/questions/1871704/how-to-automatically-determine-best-net-type-match-of-a-value1How to automatically determine best .NET type match of a valueJohn Sheehan2009-12-09T05:11:05Z2009-12-09T06:01:54Z
<p>I'm working on a T4 template to automatically generate a C# class definition from an XML file. For each element in the XML document I'd like to determine the type of the content in that element. Is there a framework class that handles automatically determining a type from a string value?</p>
http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869539#18695391Answer by John Sheehan for ValidateRequest not workingJohn Sheehan2009-12-08T20:13:31Z2009-12-08T20:13:31Z<p>Allowing HTML to be passed in a querystring is extremely dangerous and opens your site up to numerous security issues. You should find a way to pass some data (like an ID and message type) via the querystring (or even better, in the Session or a Cookie) and have the page you redirect to determine which message to show.</p>
http://stackoverflow.com/questions/1822060/how-to-redirect-with-httpcontext/1822152#18221521Answer by John Sheehan for How to redirect with HttpContextJohn Sheehan2009-11-30T20:17:38Z2009-11-30T20:23:35Z<p>Paste this into a new .cs file in your App_Code folder:</p>
<pre><code>using System;
using System.Web;
public class TestModule : IHttpModule
{
public void Init(HttpApplication context) {
context.BeginRequest += new EventHandler(context_BeginRequest);
}
void context_BeginRequest(object sender, EventArgs e) {
HttpApplication app = (HttpApplication)sender;
if (app.Request.Url.Host == "example.com") {
app.Response.Status = "301 Moved Permanently";
app.Response.AddHeader("Location", "http://www.testdomain.com/Some.aspx");
}
}
public void Dispose() {
}
}
</code></pre>
<p>Then add this to your web.config in system.web:</p>
<pre><code><httpModules>
<add type="TestModule" name="TestModule" />
</httpModules>
</code></pre>
http://stackoverflow.com/questions/1817665/mark-a-folder-as-permanent-in-vs-setup-project0Mark a folder as 'Permanent' in VS Setup ProjectJohn Sheehan2009-11-30T03:08:56Z2009-11-30T03:08:56Z
<p>When creating a Setup Project in Visual Studio you can specify that a file is Permanent, but there is no option for setting a folder as such. My installer needs to copy some files to an existing (sometimes empty) folder, but when it uninstalls it deletes the folder if it's empty. I'd like to prevent that so it doesn't break other add-ins. Right now I've added a dummy.txt file and set it as permanent so the folder isn't deleted. Is there another way?</p>
http://stackoverflow.com/questions/1816587/how-to-301-redirect/1816658#18166583Answer by John Sheehan for How to 301 redirectJohn Sheehan2009-11-29T20:24:37Z2009-11-29T20:24:37Z<p>Here's a post describing how to match one domain and redirect to another with everything else in tact using the IIS7 URL Rewrite add-in: <a href="http://weblogs.asp.net/owscott/archive/2009/11/27/iis-url-rewrite-rewriting-non-www-to-www.aspx" rel="nofollow">http://weblogs.asp.net/owscott/archive/2009/11/27/iis-url-rewrite-rewriting-non-www-to-www.aspx</a></p>
http://stackoverflow.com/questions/1773547/how-do-you-debug-run-classic-asp-pages-in-visual-studio-2008/1773557#17735573Answer by John Sheehan for How do you Debug/Run classic asp pages in Visual Studio 2008?John Sheehan2009-11-20T22:07:32Z2009-11-20T22:07:32Z<p>Use IIS for the server and Response.Write for the debugging. The way we did it "back in the day" ;)</p>
http://stackoverflow.com/questions/1773455/detect-dns-redirect-in-net/1773477#17734771Answer by John Sheehan for Detect DNS Redirect in .NETJohn Sheehan2009-11-20T21:53:22Z2009-11-20T21:53:22Z<p>Check to see if the WebResponse.ResponseUri value matches the original URL requested. <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.responseuri.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.responseuri.aspx</a></p>
http://stackoverflow.com/questions/1745335/how-to-call-eval-in-codebehind/1745383#17453830Answer by John Sheehan for How to call Eval in codebehind?John Sheehan2009-11-16T22:52:09Z2009-11-16T22:52:09Z<pre><code>protected void rProducts_ItemDataBound(object sender, RepeaterItemEventArgs e) {
if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item) {
Image ProductImage = (Image)e.Item.FindControl("ProductImage");
ProductImage.ImageUrl = DataBinder.Eval(e.Item.DataItem, "ProductImageUrl");
// Or strongly typed
Product product = (Product)e.Item.DataItem;
ProductImage.ImageUrl = product.ProductImageUrl;
}
}
</code></pre>
http://stackoverflow.com/questions/1735868/is-linq-to-sql-dying/1735873#17358733Answer by John Sheehan for Is Linq to SQL dying?John Sheehan2009-11-14T22:44:51Z2009-11-14T22:44:51Z<p>No. Here's a list of improvements coming in .NET 4: <a href="http://damieng.com/blog/2009/06/01/linq-to-sql-changes-in-net-40" rel="nofollow">http://damieng.com/blog/2009/06/01/linq-to-sql-changes-in-net-40</a></p>
http://stackoverflow.com/questions/1731828/asp-net-mvc-error-wish-to-use-a-property-of-a-control-model/1731841#17318414Answer by John Sheehan for ASP.NET MVC - Error wish to use a property of a control modelJohn Sheehan2009-11-13T20:51:06Z2009-11-13T20:51:06Z<p>You need to pass an instance of the ViewModel class to your view from the controller action method:</p>
<pre><code> public ActionResult Index()
{
var model = new DimensionesViewModel();
return View(model);
}
</code></pre>
http://stackoverflow.com/questions/1705548/disabling-viewstate-causes-selected-dropdown-values-to-default-to-1/1705555#17055551Answer by John Sheehan for Disabling Viewstate Causes selected dropdown values to default to -1John Sheehan2009-11-10T04:08:45Z2009-11-10T04:08:45Z<p>Either move your code that binds the dropdowns into Page_Init or surround them with</p>
<pre><code>if (!IsPostPack) { ... }
</code></pre>
http://stackoverflow.com/questions/41244/dynamic-linq-orderby10Dynamic LINQ OrderBy John Sheehan2008-09-03T06:30:31Z2009-10-30T09:42:05Z
<p>I found an example in the <a href="http://msdn2.microsoft.com/en-us/bb330936.aspx" rel="nofollow">VS2008 Examples</a> for Dynamic LINQ that allows you to use a sql-like string (e.g. OrderBy("Name, Age DESC")) for ordering. Unfortunately, the method included only works on IQueryable<T>. Is there any way to get this functionality on IEnumerable<T>?</p>
http://stackoverflow.com/questions/1627329/how-to-tell-where-the-user-is-coming-from/1627334#16273341Answer by John Sheehan for How to tell where the user is coming from?John Sheehan2009-10-26T21:05:14Z2009-10-26T21:05:14Z<p>Without the browser passing a referrer or using the querystring like you describe, there is no way to know.</p>
http://stackoverflow.com/questions/1608345/html-encoded-code-expressions/1608367#16083670Answer by John Sheehan for Html Encoded Code ExpressionsJohn Sheehan2009-10-22T16:19:16Z2009-10-22T16:19:16Z<p>That's sort of like asking if you should do this:</p>
<pre><code><%= DateTime.Now %>
</code></pre>
<p>or this</p>
<pre><code><% Response.Write(DateTime.Now) %>
</code></pre>
<p>There's no right answer, but one certainly looks better to me.</p>
http://stackoverflow.com/questions/1592278/asp-net-mvc-how-to-get-the-controller-name-from-an-url/1592342#15923422Answer by John Sheehan for ASP.NET-MVC . How to get the controller name from an url?John Sheehan2009-10-20T03:52:19Z2009-10-20T03:52:19Z<p>You should probably add another route like George suggests but if you really just need the controller value derived from the route you can do this in your controller action methods:</p>
<pre><code>var controller = (string)RouteData.Values["controller"];
</code></pre>
http://stackoverflow.com/questions/1576238/looking-for-ninject-equivalent-of-structuremaps-objectfactory-getinstance-meth0Looking for Ninject equivalent of StructureMap's ObjectFactory.GetInstance() methodJohn Sheehan2009-10-16T05:31:23Z2009-10-16T05:38:36Z
<p>I'm using Ninject in an MVC project and I've used the autoregistration features in Ninject.Mvc and have my bindings set up in my application class. However, I have a place where I want to create an instance separate from those bindings. In StructureMap, you can do <code>var foo = ObjectFactory.GetInstance<IFoo>();</code> and it will resolve it for you. Is there an equivalent in Ninject 2? I can't seem to find it anywhere.</p>
http://stackoverflow.com/questions/1546905/dynamically-adding-items-to-a-listt-through-reflection0Dynamically adding items to a List<T> through reflectionJohn Sheehan2009-10-10T03:00:43Z2009-10-10T03:13:22Z
<p>Lets say I have this class</p>
<pre><code>class Child {
public string FirstName { get; set; }
public string LastName { get; set; }
}
class Container {
public List<Child> { get; set; }
}
</code></pre>
<p>I'm working on a deserializer of sorts and I want to be able to create and populate the <code>Child</code> list from the data retrieved. I've gotten this far (I've cut out a lot of handling for other types for this example so its unnecessarily "iffy" but bare with me):</p>
<pre><code>var props = typeof(Container).GetProperties();
foreach (var prop in props) {
var type = prop.PropertyType;
var name = prop.Name;
if (type.IsGenericType) {
var t = type.GetGenericArguments()[0];
if (type == typeof(List<>)) {
var list = Activator.CreateInstance(type);
var elements = GetElements();
foreach (var element in elements) {
var item = Activator.CreateInstance(t);
Map(item, element);
// ??? how do I do list.Add(item) here?
}
prop.SetValue(x, list, null); // x is an instance of Container
}
}
}
</code></pre>
<p>I can't figure out how to cast <code>list</code> to essentially <code>List<t.GetType()></code> so I can access the add method and add the item.</p>
http://stackoverflow.com/questions/1545701/how-can-i-display-vertical-lines-to-align-tags-in-visual-studio/1545708#15457085Answer by John Sheehan for How can I display vertical lines to align tags in Visual Studio?John Sheehan2009-10-09T19:45:21Z2009-10-09T19:45:21Z<p>I don't know about in HTML files, but in C# files you can get this with <a href="http://msdn.microsoft.com/en-us/vcsharp/dd218053.aspx" rel="nofollow">CodeRush Xpress</a> which is free.</p>
http://stackoverflow.com/questions/89741/can-i-see-the-currently-checked-out-revision-number-in-tortoise-svn/89754#897544Answer by John Sheehan for Can I see the currently checked out revision number in Tortoise SVN ?John Sheehan2008-09-18T03:30:20Z2009-10-09T19:44:00Z<p>If you are using XP, change your Explorer windows to Details View. Navigate to an SVN-controlled folder then go to View > Choose Details and select the SVN columns for status/rev/etc.</p>
http://stackoverflow.com/questions/1533871/how-to-use-setfocus-on-text-box-control/1533878#15338782Answer by John Sheehan for How to use SetFocus on text box control?John Sheehan2009-10-07T20:06:14Z2009-10-07T20:06:14Z<pre><code> txtUserName.Focus()
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178232%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178232%28VS.80%29.aspx</a><br />
<a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.focus%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.control.focus%28VS.80%29.aspx</a></p>
http://stackoverflow.com/questions/1533474/jquery-focus-on-an-input-field-in-a-form-on-pageload/1533481#15334813Answer by John Sheehan for Jquery - Focus on an input field in a form on pageload?John Sheehan2009-10-07T18:52:37Z2009-10-07T18:52:37Z<p>Does the tag have an id attribute?</p>
<pre><code><input id="Username" name="Username" type="text" />
</code></pre>
<p>I'm guessing it only has a name attribute: </p>
<pre><code><input name="Username" type="text" />
</code></pre>
<p>If you can't add the ID attribute, you can select it like this:</p>
<pre><code>$("input[name='Username']").focus();
</code></pre>
http://stackoverflow.com/questions/1532549/asp-net-mvc-go-to-a-different-view-without-changing-url/1532566#15325660Answer by John Sheehan for ASP.NET MVC - Go to a different view without changing URLJohn Sheehan2009-10-07T16:01:32Z2009-10-07T16:01:32Z<p>You can return the same view from multiple controller actions, but each controller action requires a unique URL:</p>
<pre><code>public class HomeController : Controller {
public ActionResult Index() {
return View("home");
}
public ActionResult About() {
return View("home");
}
}
</code></pre>
<p>If you want a link to load up content from a different page without changing the URL, you'll have to use some Ajax to call the server for the content and update the parts of the page you need to change with the new content.</p>
http://stackoverflow.com/questions/1529117/what-is-the-best-way-to-use-nested-objects-with-subsonic-when-i-only-have-iquerya/1531522#15315220Answer by John Sheehan for What is the best way to use nested Objects with Subsonic when I only have Iqueryable for Foreign Key RelationshipsJohn Sheehan2009-10-07T13:05:20Z2009-10-07T13:05:20Z<p>You could add another property via a partial class and use that instead of the generated one:</p>
<pre><code>public partial class Order {
public IList<OrderDetail> Details { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/344860/good-algorithm-for-combining-items-from-n-lists-into-one-with-balanced-distributi3Good algorithm for combining items from N lists into one with balanced distribution?John Sheehan2008-12-05T19:26:12Z2009-10-06T17:05:49Z
<p>Let's say I have the three following lists</p>
<p>A1<br />
A2<br />
A3 </p>
<p>B1<br />
B2</p>
<p>C1<br />
C2<br />
C3<br />
C4<br />
C5 </p>
<p>I'd like to combine them into a single list, with the items from each list as evenly distributed as possible sorta like this:</p>
<p>C1<br />
A1<br />
C2<br />
B1<br />
C3<br />
A2<br />
C4<br />
B2<br />
A3<br />
C5</p>
<p>I'm using .NET 3.5/C# but I'm looking more for how to approach it then specific code.</p>
<p>EDIT: I need to keep the order of elements from the original lists.</p>
http://stackoverflow.com/questions/1514944/how-does-c-turn-a-variable-name-into-an-anonymous-object-property-name2How does C# turn a variable name into an anonymous object property name?John Sheehan2009-10-03T21:51:35Z2009-10-04T07:48:25Z
<p>When you create a new anonymous object using the following syntax:</p>
<pre><code>string name = "Foo";
var myObject = new { name };
</code></pre>
<p>You get an object with a property named 'name':</p>
<pre><code>myObject.name == "Foo"; //true
</code></pre>
<p>What method does C# use to extract the variable name?</p>
http://stackoverflow.com/questions/1495620/how-to-specify-table-mappings-with-subsonic/1495690#14956901Answer by John Sheehan for How to specify table mappings with Subsonic?John Sheehan2009-09-30T01:10:46Z2009-09-30T01:10:46Z<p>SimpleRepository automatically creates the table definitions based on the classes you define so there's no mapping to be done.</p>
http://stackoverflow.com/questions/1495086/how-to-set-an-mvc-object-to-a-variable-within-webform/1495095#14950951Answer by John Sheehan for how to set an mvc object to a variable within webform John Sheehan2009-09-29T21:36:09Z2009-09-29T21:36:09Z<p>Change the line to </p>
<pre><code> var myName = <%=Model.TableName.Name%>;
</code></pre>
http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes122Hidden .NET Base Class Library Classes?John Sheehan2008-09-23T18:23:11Z2009-09-29T16:49:15Z
<p>What are your favorite lesser-known .NET Base Class Library classes and methods?</p>
http://stackoverflow.com/questions/1491090/update-command-in-database/1493109#14931091Answer by John Sheehan for Update command in databaseJohn Sheehan2009-09-29T14:59:29Z2009-09-29T14:59:29Z<p>I think that's a valid bug. You should create a ticket here: <a href="http://github.com/subsonic/SubSonic-3.0/issues" rel="nofollow">http://github.com/subsonic/SubSonic-3.0/issues</a></p>
http://stackoverflow.com/questions/1879136/forms-authentication-and-post-requests-from-ajax/1879216#1879216Comment by John Sheehan on Forms Authentication and POST requests from AJAXJohn Sheehan2009-12-10T07:30:16Z2009-12-10T07:30:16ZYou'll also need to call setInterval again within ping() if you want it to run more than oncehttp://stackoverflow.com/questions/1879136/forms-authentication-and-post-requests-from-ajax/1879216#1879216Comment by John Sheehan on Forms Authentication and POST requests from AJAXJohn Sheehan2009-12-10T07:29:30Z2009-12-10T07:29:30Zyou can do just <code>setInterval(ping,60000);</code> passing a string to setInterval is not recommended as it's the equivalent of eval()http://stackoverflow.com/questions/1871704/how-to-automatically-determine-best-net-type-match-of-a-value/1871740#1871740Comment by John Sheehan on How to automatically determine best .NET type match of a valueJohn Sheehan2009-12-09T05:31:10Z2009-12-09T05:31:10ZIt won't be the end of the world. There's only so many CLR types you can represent in XML. I learned that when writing my own deserializer :)http://stackoverflow.com/questions/1871704/how-to-automatically-determine-best-net-type-match-of-a-value/1871740#1871740Comment by John Sheehan on How to automatically determine best .NET type match of a valueJohn Sheehan2009-12-09T05:22:38Z2009-12-09T05:22:38ZI have a feeling I'm going to end up having a list of supported types and just checking them one by one using a bunch of TryParse calls until one works and using that.http://stackoverflow.com/questions/1871704/how-to-automatically-determine-best-net-type-match-of-a-valueComment by John Sheehan on How to automatically determine best .NET type match of a valueJohn Sheehan2009-12-09T05:20:10Z2009-12-09T05:20:10ZCheck out RestSharp (restsharp.org) and it might make more sense as a use case. The WCF REST Toolkit has a 'Paste XML as Types' function that does this, so I know it's possible.http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869538#1869538Comment by John Sheehan on ValidateRequest not workingJohn Sheehan2009-12-08T20:18:34Z2009-12-08T20:18:34ZI like the updated answer, but it says my downvote is too old to undo.http://stackoverflow.com/questions/1869515/validaterequest-not-working/1869538#1869538Comment by John Sheehan on ValidateRequest not workingJohn Sheehan2009-12-08T20:14:17Z2009-12-08T20:14:17ZSorry, -1. You should never pass HTML in a querystring.http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/75170#75170Comment by John Sheehan on Hidden Features of ASP.NETJohn Sheehan2009-12-07T20:23:50Z2009-12-07T20:23:50ZThere's no setting for that. You'll have to manage the config differences using other methods (Web Deployment Projects, Build tasks, etc)http://stackoverflow.com/questions/1824143/cant-open-subsonic-3-example-projects/1824158#1824158Comment by John Sheehan on Can't open subsonic-3 example projectsJohn Sheehan2009-12-01T07:03:23Z2009-12-01T07:03:23ZMaybe try this: <a href="http://weblogs.asp.net/leftslipper/archive/2009/01/20/opening-an-asp-net-mvc-project-without-having-asp-net-mvc-installed-the-project-type-is-not-supported-by-this-installation.aspx" rel="nofollow">weblogs.asp.net/leftslipper/archive/…</a>http://stackoverflow.com/questions/1824143/cant-open-subsonic-3-example-projects/1824158#1824158Comment by John Sheehan on Can't open subsonic-3 example projectsJohn Sheehan2009-12-01T06:06:53Z2009-12-01T06:06:53ZJust downloaded to open them and they're definitely ASP.NET MVC 1.0 projects. Did you install MVC 1 or 2?http://stackoverflow.com/questions/1824143/cant-open-subsonic-3-example-projects/1824158#1824158Comment by John Sheehan on Can't open subsonic-3 example projectsJohn Sheehan2009-12-01T05:57:09Z2009-12-01T05:57:09ZWhat's the name of one of the projects that won't open?http://stackoverflow.com/questions/1824143/cant-open-subsonic-3-example-projectsComment by John Sheehan on Can't open subsonic-3 example projectsJohn Sheehan2009-12-01T05:25:25Z2009-12-01T05:25:25ZWhat edition of VS are you running? Standard? Pro?http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascriptComment by John Sheehan on Are there any good reasons NOT to use jQuery instead of plain old JavaScript?John Sheehan2009-11-30T21:59:26Z2009-11-30T21:59:26ZI want to vote to close as 'Subjective and Argumentative' but can't pull the trigger for some reason. I think the question has merit, but maybe should have been community wiki since it's a poll.http://stackoverflow.com/questions/1822651/are-there-any-good-reasons-not-to-use-jquery-instead-of-plain-old-javascriptComment by John Sheehan on Are there any good reasons NOT to use jQuery instead of plain old JavaScript?John Sheehan2009-11-30T21:57:24Z2009-11-30T21:57:24ZSimilar question: <a href="http://stackoverflow.com/questions/471597/is-jquery-always-the-answer" rel="nofollow" title="is jquery always the answer">stackoverflow.com/questions/471597/…</a>http://stackoverflow.com/questions/1822060/how-to-redirect-with-httpcontext/1822152#1822152Comment by John Sheehan on How to redirect with HttpContextJohn Sheehan2009-11-30T21:11:39Z2009-11-30T21:11:39ZIf you're just using WAP, you can create this class anywhere in the proejct.