User Greg Ogle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T15:08:50Z http://stackoverflow.com/feeds/user/2017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1278258/asp-net-mvc-webform-hybrid 1 ASP.NET MVC, Webform hybrid Greg Ogle 2009-08-14T14:40:52Z 2009-12-10T23:00:10Z <p>We (me and my team) have a ASP.NET MVC application and we are integrating a page or two that are Web Forms. We are trying to reuse the Master Page from our MVC part of the app in the WebForms part. We have found a way of rendering an MVC partial view in web forms, which works great, <strong><em>until</em></strong> we try and do a postback, which is the reason for using a WebForm. </p> <p>The Error:</p> <blockquote> <p>Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.</p> </blockquote> <p>The Code to render the partial view from a WebForm <a href="http://stackoverflow.com/questions/702746/how-to-include-a-partial-view-inside-a-webform/1074061#1074061">(credited to "How to include a partial view inside a webform")</a>:</p> <pre><code>public static class WebFormMVCUtil { public static void RenderPartial(string partialName, object model) { //get a wrapper for the legacy WebForm context var httpCtx = new HttpContextWrapper(System.Web.HttpContext.Current); //create a mock route that points to the empty controller var rt = new RouteData(); rt.Values.Add("controller", "WebFormController"); //create a controller context for the route and http context var ctx = new ControllerContext( new RequestContext(httpCtx, rt), new WebFormController()); //find the partial view using the viewengine var view = ViewEngines.Engines.FindPartialView(ctx, partialName).View; //create a view context and assign the model var vctx = new ViewContext(ctx, view, new ViewDataDictionary { Model = model }, new TempDataDictionary()); //ERROR OCCURS ON THIS LINE view.Render(vctx, System.Web.HttpContext.Current.Response.Output); } } </code></pre> <p>My only experience with this error is in context of a web farm, which is not the case. Also, I understand that the machine key is used for decrypting the ViewState. </p> <p>Any information on how to diagnose this issue would be appreciated.</p> <p><strong>A Work-around:</strong> So far the work-around is to move the header content to a PartialView, then use an AJAX call to call a page with just the Partial View from the WebForms, and then using the PartialView directly on the MVC Views. Also, we are still able to share non-tech-specific parts of the Master Page, i.e. anything that is not MVC specific. Still yet, this is not an ideal solution, a server-side solution is still desired.</p> <p>Also, this solutino has issues when working with controls that have more sophisticated controls, using JavaScript, particularly dynamically generated script as used by 3rd party controls.</p> http://stackoverflow.com/questions/164593/how-do-i-install-sql-server-odbc-driver 1 How do I install "SQL Server" ODBC Driver? Greg Ogle 2008-10-02T21:02:29Z 2009-10-11T13:41:43Z <p>I Have "SQL Native Client", but not "SQL Server" ODBC driver. I have SQL 2005 installed on my machine.</p> <p>Tried to fix by installing SQL Server client tools.</p> <p>Any ideas would be appreciated.</p> <p>I'm running Windows XP Pro.</p> http://stackoverflow.com/questions/1460390/ssrs-subfolders-in-visual-studio-report-server-project 0 SSRS subfolders in Visual Studio Report Server Project Greg Ogle 2009-09-22T14:22:06Z 2009-09-26T03:09:53Z <p>I am using SSRS 2008. Currently everything works find so long as I put all reports in the Reports folder of the Report Server Project in Visual Studio. </p> <p>I attempted a work-around, which is to have multiple Report Server projects, each pointing to a different folder on the report server. This has the side effect of not letting me reference the sub report from another project.</p> <p>So, is there a way of referencing a sub-report from another project and still have the ability to preview?</p> <p>Is there a way to get sub-folders in Report Server project?</p> http://stackoverflow.com/questions/1372658/how-to-store-user-entered-values-across-a-website-using-c/1372702#1372702 0 Answer by Greg Ogle for How to store user entered values across a website using C#? Greg Ogle 2009-09-03T10:46:14Z 2009-09-03T10:46:14Z <p>I would think session is the appropriate place to put things that are relevant to your 'session'. It <em>is</em> true that over-using/abusing session can bite you with excessive memory consumption, but the alternatives can be a bit slower, just depending. Also, if you use SessionStateService or store the Session in SQL Server, you have slow-down in serializing/deserializing the session objects on each request.</p> <p>You can use ViewState, but that means all of the data will get serialized to the HTTP Form, which means it will get passed back and forth on subsequent requests. Also, I think ViewState gets dropped from one ASP.NET form to the next, so unless you are on the same form, that won't work.</p> <p>You can store the data in the database. One way is to have Session use SQL Server. If I were to use a database for this problem, I don't think I would use session in SQL Server though simply because if you store it yourself, then you could recover previously entered data.</p> http://stackoverflow.com/questions/1338430/speeding-up-web-development/1338473#1338473 2 Answer by Greg Ogle for Speeding up web development Greg Ogle 2009-08-27T01:51:11Z 2009-08-28T00:31:49Z <p>I've been using the .NET stack for about 5 years, the ASP.NET MVC stack for about 3 months, and old ASP for 4 about years.</p> <p>The key to dealing with complexity is mitigating it. In your code, always abstract away complexity to a reasonable level. For example, say there are 10 steps to placing an order. In that case, at a higher level, you would have a method 'SubmitOrder'; under it might be 10 method calls for inserting appropriate records, dealing with inventory and so on. In each of those 'business' layers, you can just deal with these business problem, and even below those layers, you would deal with data and mechanical details. The benefit to all of these layers is that you make each layer deal with a chunk of the work, and as you go up closer to the UI, you have an 'interface' that makes sense to the UI and the way the application needs to flow.</p> http://stackoverflow.com/questions/79453/job-concentration-change 0 Job concentration change.. Greg Ogle 2008-09-17T02:52:24Z 2009-08-17T11:20:13Z <p>There is a potential offer at the company which I just started. I am still on contract pending hire, and they have a person leaving the team that supports Lawson (HR, Payroll) and some other related applications/systems. Their original intent was to put me on the regular support staff which is mostly developing, but much supporting applications. Both jobs use the same technology except there is more variety in the HR/Payroll gig. My two fears are 1) getting stuck, which if I enjoy it and it is not a career dead-end would be OK. and 2) just not programming as much, which would at least temporarily be the case in both situations. </p> <p>So, with many counselors are wars won; what's your counsel?</p> http://stackoverflow.com/questions/1274319/access-htmlhelpers-from-webform-when-using-asp-net-mvc 0 Access HtmlHelpers from WebForm when using ASP.NET MVC Greg Ogle 2009-08-13T20:16:01Z 2009-08-13T20:42:39Z <p>I am adding a WebForm from which I would like to resolve routes to URLs. For example, in MVC I would just use </p> <pre><code>return RedirectToAction("Action", "Controller"); </code></pre> <p>So, if you have a way of getting to that same URL from a WebForm in the same application, it would be appreciated.</p> http://stackoverflow.com/questions/1175407/webservice-applicationpool/1175434#1175434 4 Answer by Greg Ogle for Webservice Applicationpool Greg Ogle 2009-07-24T01:58:28Z 2009-07-24T02:04:14Z <p>Yes you can have multiple web applications using to the same application pool. </p> <p>Is it a performance concern? If it is really high traffic or is faulty code, then perhaps.</p> <p>Application pools allow pushing sites to different processes, reducing the risk of each affecting the other. If one app pool contains an application/web application that has a memory leak, the leak will only affect that particular process, at least directly. Each process can be recycled either by time or system parameters, which mitigates risks of having something in a bad state. </p> <p>Performance? Another benefit to app pools is the ability to have multiple instances running simultaneously (a similar thing when putting each app in its own pool). The benefit of this is that more request can be handled at a time. The down-side is that you cannot use in-process session state and your application state will be duplicated for each instance of the process. You would need to consider how much 'stuff' you keep in session and how your caching scheme would be effected, but, it has potential for giving a web application more scalability.</p> <p>You mention call SSIS... I am assuming that is a long-running service, so you would probably want to push the call to that process to some sort of queue that can process outside of the web service request. MSMQ might work for you. If using a queue as such, you would initiate the running of the code, then have a way of checking on the status of the call to see if it is done.</p> http://stackoverflow.com/questions/1169009/how-to-handle-view-not-found-invalidoperationexception-in-asp-net-mvc/1169079#1169079 0 Answer by Greg Ogle for How to handle 'View not found' InvalidOperationException in asp.net mvc? Greg Ogle 2009-07-23T01:08:40Z 2009-07-23T01:32:22Z <p>I would just return a default view, perhaps a 404 response would be appropriate. Of course to make this work, you'll need to change your architecture a bit. </p> <p>AFAIK you will need to have some code to check to see if the file exists, as in your ASPX file if you don't want the default framework behavior. You might ought to use <a href="http://stackoverflow.com/questions/317315/asp-net-mvc-relative-paths">ResolveURL or Url.Content</a> to resolve the path from you application path.</p> <p>As a note, generally, it is not exactly safe to make your domain (the file names) exposed to the world. If the ASPX's are just data, then you should put the text into a database or plain, non-executable text files. If you are building some sort of CMS (i.e. you really want a way of 'installing' functionality), then you might consider using an ASPX view to contain partial views to encapsulate the chunks of ASP.NET code.</p> <p>As for getting to the 404 page, <a href="http://stackoverflow.com/questions/108813/404-http-error-handler-in-asp-net-mvc-rc-5">this answer</a> might help.</p> http://stackoverflow.com/questions/1146493/asp-net-mvc-bugs 1 ASP.NET MVC bugs [closed] Greg Ogle 2009-07-18T02:11:52Z 2009-07-22T19:51:59Z <p>What bugs have you experience while using ASP.NET MVC?</p> <p>As a first, The Html.DropDownList does not respect Selected property of SelectListItem when explicitly bound to List of SelectListItem.</p> http://stackoverflow.com/questions/1146484/asp-net-mvc-best-pratices/1146555#1146555 0 Answer by Greg Ogle for ASP.NET MVC Best Pratices Greg Ogle 2009-07-18T02:41:30Z 2009-07-18T02:41:30Z <p>The Nerd Dinner app is a clean cut example. I agree with pushing CRUD to a repository, and in general, using the controller only for control flow.</p> <p>However, in my experience with ASP.NET MVC (right or wrong), the controller ends up doing a lot of rearranging of the data before handing off to the view, and vice versa when accepting an object model as data from a form post. But again, it is just making a translation between what the View needs and what the Model needs.</p> http://stackoverflow.com/questions/1140915/httpmodule-init-method-is-called-several-times-why/1141074#1141074 1 Answer by Greg Ogle for HttpModule Init method is called several times - why? Greg Ogle 2009-07-17T01:18:08Z 2009-07-17T02:13:14Z <p>Here is a bit of explanation as to what you should use, when, and how they work. <a href="http://stackoverflow.com/questions/720969/when-to-use-applicationstart-vs-init-in-global-asax">When to use Application_Start vs Init in Global.asax?</a></p> <p>Edit: More reading</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc301362.aspx" rel="nofollow">The ASP Column: HTTP Modules</a></p> <p><a href="http://support.microsoft.com/kb/312607" rel="nofollow">INFO: Application Instances, Application Events, and Application State in ASP.NET</a></p> http://stackoverflow.com/questions/1140893/developing-for-constant-change-in-a-corporate-environment/1141051#1141051 0 Answer by Greg Ogle for Developing for constant change in a corporate environment? Greg Ogle 2009-07-17T01:08:34Z 2009-07-17T01:08:34Z <p>One thought is to have a group of people that oversee the projects to make sure they are in alignment with the business. It takes some leadership to keep things from becoming a train wreck. </p> <p>I know in Scrum, there is the concept of Scrum of Scrums. Basically, a representative from each team meets each day (or less often in some cases) to tell what the team has been up to, what they are working on today, and discuss obstacles (which may be the other team(s)). </p> <p>Also, agile practices in general address exactly your problem in that they anticipate change.</p> <p>So, if management is not keeping things on track, there is going to have to be some really good communication and leadership from within.</p> http://stackoverflow.com/questions/345427/linq-to-sql-join-multiple-columns-from-the-same-table/1139119#1139119 1 Answer by Greg Ogle for linq to sql: join multiple columns from the same table Greg Ogle 2009-07-16T17:36:48Z 2009-07-16T17:36:48Z <p>from <a href="http://www.onedotnetway.com/linq-to-sql-join-on-multiple-conditions/" rel="nofollow">http://www.onedotnetway.com/linq-to-sql-join-on-multiple-conditions/</a></p> <p>Both these tables have PostCode and CouncilCode as common fields. Lets say that we want to retrieve all records from ShoppingMall where both PostCode and CouncilCode on House match. This requires us to do a join using two columns. In LINQ such a join can be done using anonymous types. Here is an example.</p> <pre><code>var query = from s in context.ShoppingMalls join h in context.Houses on new { s.CouncilCode, s.PostCode } equals new { h.CouncilCode, h.PostCode } select s; </code></pre> http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post 0 Model not rendering model values after post. Greg Ogle 2009-07-15T19:18:07Z 2009-07-15T22:53:41Z <p>I have an ASP.NET MVC page that has a list of items... </p> <pre><code>//a vague representation Model.someValue[0] Model.someHiddenValue[0] Model.someValue[1] Model.someHiddenValue[1] Model.someValue[2] Model.someHiddenValue[2] </code></pre> <p>All fields are optional, but they do have some validation, of which I am showing validation messages.</p> <p>The problem is, when I submit once and return the original view instead of a redirect, the hidden fields are not getting their new value, but their new value is in the view model being passed to the view.</p> <p>I am thinking the ModelState might be overriding the model as part of validation. I know I can do a redirect and bypass the problem, but I want be able to save part of the form and show validation errors for the rest. If there are no other solutions, I will simply validate the whole form and only save when all items are valid.</p> http://stackoverflow.com/questions/589935/html-dropdownlist-in-asp-net-mvc-rc-refresh-not-pre-selecting-item/1119012#1119012 0 Answer by Greg Ogle for Html.DropDownList in ASP.NET MVC RC (refresh) not pre-selecting item Greg Ogle 2009-07-13T11:48:46Z 2009-07-13T11:48:46Z <p>I simply made my own drop-down helper. Perhaps not as efficient as the one built-in, but it does work.</p> http://stackoverflow.com/questions/16829/structure-of-projects-in-version-control 9 Structure of Projects in Version Control Greg Ogle 2008-08-19T20:01:30Z 2009-06-24T07:00:15Z <p>I know there are at least 10 different ways to structure project in version control. I'm curious what some methods being used are and which ones work for you. I've worked with SVN, TFS, and currently/unfortunately VSS. I've seen version control implemented very poorly and just OK, but never great.</p> <p>Just to get the ball rolling, here is a review of things I've seen.</p> <p>This example is SVN-based, but applies to most VCS's.</p> <ol> <li><p>branch the individual projects that are part of site /division/web/projectName/vb/src/[trunk|branches|tags]</p></li> <li><p>branch the whole site, in the case I've seen, the whole site except for core components was branched. /division/[trunk|branches|tags]/web/projectName/vb/src/</p></li> <li><p>Use main-line a default, only branch when necessary for <strong>huge</strong> changes.</p></li> </ol> http://stackoverflow.com/questions/995521/asp-net-web-service-optional-parameters/999030#999030 1 Answer by Greg Ogle for ASP.NET Web Service - Optional Parameters? Greg Ogle 2009-06-15T23:50:35Z 2009-06-17T02:00:46Z <p>The primitives are not <em>reference</em> types, but rather they are <em>value</em> types. You can make a <em>value</em> type "nullable" a couple ways.</p> <p>The short-hand is</p> <pre><code>int? i; </code></pre> <p>or long-hand here</p> <pre><code>Nullable&lt;int&gt; i; </code></pre> http://stackoverflow.com/questions/924144/is-there-such-a-thing-as-a-soap-proxy-server-or-am-i-going-to-have-to-roll-my-own/924267#924267 1 Answer by Greg Ogle for Is there such a thing as a SOAP proxy server or am I going to have to roll my own? Greg Ogle 2009-05-29T03:32:15Z 2009-05-29T03:32:15Z <p>I believe an ESB (Enterprise Service Bus) could be a viable, robust solution to your problem. There is an open source ESB called <a href="http://www.mulesource.org/display/MULE2INTRO/What%2Bis%2BMule" rel="nofollow">Mule</a>, which I've never used. I did mess around with <a href="http://edocs.bea.com/alsb/docs20/concepts/overview.html#1074248" rel="nofollow">ALSB (AquaLogic Service Bus)</a> a while back, but it would be expensive for what you are describing. Anyway, the thing that you would want to look at in particular is the routing. I'm not sure it would be a simple plug 'n play, but it is indeed another option.</p> http://stackoverflow.com/questions/898492/can-i-change-the-width-of-an-asp-net-button-dynamically-based-on-the-length-of-te/898573#898573 1 Answer by Greg Ogle for Can I change the width of an asp.net button dynamically based on the length of text Greg Ogle 2009-05-22T15:47:55Z 2009-05-22T17:30:04Z <p>Just don't set the width.</p> <p>Update</p> <p>As noted in comments, the case is using an image, probably as background.</p> <p>The only things I can think of for image buttons that dynamically resize is using using separate images as end-caps for the left and right of the button, then a background image that either can repeat or is big enough to account for all sizes. This would have the limitation of how the center image fades into the ends, probably at best you could use a top to bottom gradient.</p> <p>An alternative would be to use css/javascript package/method such as <a href="http://www.spiffycorners.com/" rel="nofollow">SpiffyCorners</a>.</p> <p>If you try to stretch an image, you risk pixelation and you would have to use an estimation for font width such as you could get from a printing or font API. This would be very error prone due to the risk of not all clients having the same fonts.</p> http://stackoverflow.com/questions/874902/convert-a-string-value-to-int-when-checking-with-the-db-in-c/874916#874916 2 Answer by Greg Ogle for convert a string value to int when checking with the db in c# Greg Ogle 2009-05-17T16:23:10Z 2009-05-17T23:50:21Z <p>I think the problem is with the ItemID column, not the itemIDs string or you have quotes around 3,16,8. </p> <p>The SQL should be</p> <pre><code>SELECT ItemID, Name, RelDate, Price, Status FROM item_k WHERE ItemID IN (3,16,8) </code></pre> <p>which is assuming ItemID is indeed an integer, and I'm guessing that it should be.</p> <p>If you have the same scenario for non-integer IN clause, it would be</p> <pre><code>SELECT * FROM table WHERE columnname IN ('Val1','VaL2') </code></pre> <p><strong>Addition For nulls:</strong></p> <pre><code>SELECT * FROM table WHERE (columnname IN ('Val1','VaL2') OR columnname IS NULL) </code></pre> <p>or </p> <pre><code>SELECT * FROM table WHERE (columnname IN ('Val1','VaL2') AND columnname IS NOT NULL) </code></pre> <p><strong>Addition for second question:</strong> <a href="http://stackoverflow.com/questions/581448/join-a-string-using-delimiters">Refer to article "Join a String Using Delimiters"</a> for multiple solutions. Also, as an aside, I would use a List&lt;int&gt; / List(Of Integer) (C#, vb.net respectively) instead of ArrayList if using .NET 2.0+ Framework.</p> http://stackoverflow.com/questions/873207/force-download-of-a-file-on-web-server-asp-net-c/873320#873320 0 Answer by Greg Ogle for Force download of a file on web server - ASP .NET C# Greg Ogle 2009-05-16T21:11:04Z 2009-05-16T21:11:04Z <p>Add a <code>Response.Clear</code> before you <code>Response.Write</code> to fix the error, if stated properly in the Chrome dialog.</p> <p>So to integrate in the snippet in other answer...</p> <pre><code>//add this Reponse.Clear(); //from other answer Response.ContentType = "text/plain"; Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.sql", filename)); Response.Write(yourSQL); Response.End; </code></pre> http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/872270#872270 7 Answer by Greg Ogle for PL/SQL "SQL Command not properly ended" error Greg Ogle 2009-05-16T11:49:57Z 2009-05-16T11:49:57Z <p>Put a semicolon at the end of each statement.</p> http://stackoverflow.com/questions/863611/if-you-dont-set-an-expiration-for-a-cookie-will-it-be-lost-when-the-browser-is/863625#863625 1 Answer by Greg Ogle for If you don't set an expiration for a cookie, will it be lost when the browser is closed? Greg Ogle 2009-05-14T14:23:01Z 2009-05-14T14:23:01Z <p>If it has no expiration, then it will. It will be treated as a Session cookie. An exception to this are new versions Firefox, which can save your session.</p> http://stackoverflow.com/questions/856006/asp-net-mvc-vs-webforms-vs-http-handlers-ashx-which-is-the-most-lightweigh/856071#856071 0 Answer by Greg Ogle for ASP.NET MVC vs. Webforms vs. HTTP Handlers (.ashx) - which is the most lightweight? Greg Ogle 2009-05-13T04:30:13Z 2009-05-13T04:30:13Z <p>MVC very much gives you more control over HTML produced. So, from a bandwidth perspective, it definitely has better performance. With this may also come conciseness of code to generate this HTML. </p> <p>However, MVC doe not improve business/data layer, or database performance, it just separates them. If you want to analyze, having multiple layers does not improve performance, just the structure of the program, which in turn may lend itself to methods for adding more performance.</p> <p>A down side to MVC is learning how to think MVC and learning how to use the framework. If that is not an issue, go for MVC, it will teach you some good habits, if you don't have them already.</p> <p>And finally, HTTP Handlers are not really meant for being used in this way, they are for things like file proxies.</p> http://stackoverflow.com/questions/848629/will-view-increase-the-performance/848753#848753 0 Answer by Greg Ogle for Will View Increase The Performance? Greg Ogle 2009-05-11T15:51:58Z 2009-05-11T15:51:58Z <p>It also depends on the Database. If the RDMS does not analyze the underlying query based on your criteria, it may not perform well at all.</p> <p>Most current RDMS's will do a query rewrite (I think some earlier versions of SQL Server, like 6 or 7, did not do this), it will pull apart the view in light of your query, then rewrite the whole thing based on its optimization techniques.</p> <p>The various iterations of queries using the view could have their plans cached and gain some performance in that way.</p> <p>So, from my understanding, at least in theory (depending on the database optimizer), using views is not different then writing the whole query.</p> http://stackoverflow.com/questions/843934/how-can-i-make-refreshing-a-control-faster/844039#844039 0 Answer by Greg Ogle for How can I make refreshing a control faster? Greg Ogle 2009-05-09T20:50:44Z 2009-05-09T20:50:44Z <p>Is the refresh a automatic recurring event or in response to a user event?</p> <p>In the first case it should be asynchronous (in its own thread). If in response to a user event, then that would also be true in the case that the "refresh" is not critical to the event.</p> <p>If the code that updates the interface is too slow, make sure it is only doing the updating of the interface (it should have data already ready.. which is along the vein of double buffering). If that is not the case, do some logging, find out what is taking too much time. </p> <p>If it must get data first, then some lag is expected. If that is unacceptable, then you'll need to have some caching mechanism. You can have the cache automatically updated asynchronously or have it return what's cached, get fresh data, then cause another update.. or something to that effect.</p> http://stackoverflow.com/questions/843955/change-datagrid-columns-order-or-index/844017#844017 0 Answer by Greg Ogle for change datagrid columns order or index Greg Ogle 2009-05-09T20:41:19Z 2009-05-09T20:41:19Z <p>I am not sure the specific of what is going on, but something to consider...</p> <p>At what point are you modifying the columns? If too late, it may need to be rebound to the grid, causing it to be redrawn. Usually when I change something and I don't see its effect on the screen, it is due to binding order.</p> http://stackoverflow.com/questions/842609/why-does-c-not-allow-const-and-static-on-the-same-line/842614#842614 7 Answer by Greg Ogle for Why does C# not allow const and static on the same line? Greg Ogle 2009-05-09T03:54:48Z 2009-05-09T03:54:48Z <p>Constants by their nature <em>are</em> static, so that would be redundant. </p> http://stackoverflow.com/questions/837764/new-to-svn-how-to-setup/837781#837781 0 Answer by Greg Ogle for New to SVN, How to Setup? Greg Ogle 2009-05-08T00:56:21Z 2009-05-08T00:56:21Z <p>It depends on how you work. There are <a href="http://stackoverflow.com/questions/16829/structure-of-projects-in-version-control">other discussions</a> about folder structure and such which play directly into how you use version control.</p> http://stackoverflow.com/questions/1460390/ssrs-subfolders-in-visual-studio-report-server-project/1480325#1480325 Comment by Greg Ogle on SSRS subfolders in Visual Studio Report Server Project Greg Ogle 2009-10-01T14:00:53Z 2009-10-01T14:00:53Z Thanks. For now I'm just keeping everything in one folder. http://stackoverflow.com/questions/1338430/speeding-up-web-development/1338473#1338473 Comment by Greg Ogle on Speeding up web development Greg Ogle 2009-08-27T10:54:57Z 2009-08-27T10:54:57Z Just a comment about that you should not use MVC if you are using 'postback controls'. Will edit later. http://stackoverflow.com/questions/1338389/delete-duplicated-records-from-two-databases/1338406#1338406 Comment by Greg Ogle on Delete duplicated records from two databases Greg Ogle 2009-08-27T01:37:49Z 2009-08-27T01:37:49Z I believe you can still use aliases... delete t@db2 alias where... http://stackoverflow.com/questions/1278258/asp-net-mvc-webform-hybrid Comment by Greg Ogle on ASP.NET MVC, Webform hybrid Greg Ogle 2009-08-14T15:12:00Z 2009-08-14T15:12:00Z @Kurt Edit made to give credit http://stackoverflow.com/questions/841418/is-it-possible-to-share-a-masterpage-between-mvc-and-webforms/841427#841427 Comment by Greg Ogle on Is it possible to share a masterpage between MVC and webforms? Greg Ogle 2009-08-13T19:50:26Z 2009-08-13T19:50:26Z As for the &quot;Cannot find Content...&quot;, you will need to setup to be a child page with &lt;asp:Content &gt; tags. http://stackoverflow.com/questions/1140915/httpmodule-init-method-is-called-several-times-why/1141074#1141074 Comment by Greg Ogle on HttpModule Init method is called several times - why? Greg Ogle 2009-07-17T02:16:35Z 2009-07-17T02:16:35Z More to read added. http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post/1134547#1134547 Comment by Greg Ogle on Model not rendering model values after post. Greg Ogle 2009-07-16T11:56:24Z 2009-07-16T11:56:24Z Thanks, I don't completely understand how the ModelState is working, but this give sufficient info to work around it when necessary. Thanks. http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post/1133525#1133525 Comment by Greg Ogle on Model not rendering model values after post. Greg Ogle 2009-07-15T19:59:24Z 2009-07-15T19:59:24Z I did not.. I changed my validation to be all or nothing... if successful, save then redirect... else show view, which give the validation messages. http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011689#1011689 Comment by Greg Ogle on What are common UI misconceptions and annoyances? Greg Ogle 2009-06-21T02:33:20Z 2009-06-21T02:33:20Z alternatively, use the 1st letter of each word in the sentence/phrase http://stackoverflow.com/questions/887646/include-html-file-in-c-code/887661#887661 Comment by Greg Ogle on Include HTML file in C# code Greg Ogle 2009-05-20T12:44:33Z 2009-05-20T12:44:33Z Literal has no wrapper tags, just whatever you put there. http://stackoverflow.com/questions/874902/convert-a-string-value-to-int-when-checking-with-the-db-in-c/874916#874916 Comment by Greg Ogle on convert a string value to int when checking with the db in c# Greg Ogle 2009-05-17T20:06:33Z 2009-05-17T20:06:33Z Added section to address nulls http://stackoverflow.com/questions/861384/is-it-possible-to-install-c-compiler-w-o-visual-studio/861419#861419 Comment by Greg Ogle on Is it possible to install c# compiler w/o Visual Studio? Greg Ogle 2009-05-14T03:31:37Z 2009-05-14T03:31:37Z +1 for out of box thinking http://stackoverflow.com/questions/815234/c-foreach-loop-hashtable-issue/815245#815245 Comment by Greg Ogle on C# Foreach Loop Hashtable Issue Greg Ogle 2009-05-02T17:43:40Z 2009-05-02T17:43:40Z This would get the ToString of the ArrayList. There are multiple answers for each question, so two loops, outer for questions, inner for each answer in the arraylist. http://stackoverflow.com/questions/814682/c-adding-button-inside-listbox/814891#814891 Comment by Greg Ogle on C# - Adding Button inside ListBox Greg Ogle 2009-05-02T14:31:40Z 2009-05-02T14:31:40Z Yes, DataGrids work great for this, though they are more complicated than a ListBox. You can make it look like a table in HTML or some similar style. http://stackoverflow.com/questions/782666/how-do-i-extract-a-string-out-of-a-string-in-c/782719#782719 Comment by Greg Ogle on How do I extract a string out of a string in c# Greg Ogle 2009-04-23T17:18:00Z 2009-04-23T17:18:00Z This would be my answer, though some explanation might be helpful in the answer.