User cgreeno - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:28:29Zhttp://stackoverflow.com/feeds/user/6088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179315/downloading-docx-from-ie-setting-mime-types-in-iis4Downloading Docx from IE - Setting MIME Types in IIScgreeno2008-10-07T16:30:50Z2009-11-19T02:18:09Z
<p>I am sure there is a simple answer to this one.</p>
<p>I have a docx file that I get an error when trying to download(document cannot be found).... .doc is fine .txt is also fine. I am sure this is just an iis setting, the permissions on the server are all the same for all files. </p>
http://stackoverflow.com/questions/1714669/is-java-100-object-oriented/1714741#17147410Answer by cgreeno for Is Java 100% object oriented?cgreeno2009-11-11T11:57:00Z2009-11-18T16:57:52Z<p>Alan Kay quote:</p>
<blockquote>
<p>Actually I made up the term
"object-oriented", and I can tell you
I did not have C++ in mind.</p>
</blockquote>
<p>I would imagine that what he did have in mind was SmallTalk. Java is more Class Oriented then object-oriented. </p>
http://stackoverflow.com/questions/1750063/how-to-create-a-file-upload-button-in-silverlight/1750104#17501041Answer by cgreeno for how to create a file upload button in silverlightcgreeno2009-11-17T16:34:33Z2009-11-17T16:55:16Z<p>You need to use the <code>OpenFileDialog</code> (silverlight 2.0). There are <a href="http://www.c-sharpcorner.com/UploadFile/mamta%5Fm/101232009104953AM/1.aspx" rel="nofollow">plenty examples kicking around</a> or I am a big fan of <a href="http://www.microsoft.com/video/en/us/details/4f14da66-e263-4ef2-8d42-f90dc4c00384" rel="nofollow">Video Demo's</a> <a href="http://silverlight.net/learn/videos/silverlight-videos/openfiledialog-and-file-upload/" rel="nofollow">example 2</a>. </p>
http://stackoverflow.com/questions/1749425/culture-problem-reading-formatted-decimal-values/1749463#17494633Answer by cgreeno for Culture problem reading formatted decimal valuescgreeno2009-11-17T15:02:22Z2009-11-17T15:41:36Z<p><a href="http://www.csharp-examples.net/culture-names/" rel="nofollow">You need to use "sv-SE"</a> </p>
<p>"sv" defaults to "sv-EN" you need to specify a country then a language in this case.</p>
<pre><code>static void Main(string[] args)
{
decimal result;
Decimal.TryParse("2,3", NumberStyles.Number, new CultureInfo("sv-SE"),
out result);
Console.WriteLine(result);
Console.ReadLine();
}
</code></pre>
<p>Result <strong>2.3</strong></p>
http://stackoverflow.com/questions/424422/whats-the-best-method-for-setting-up-a-new-net-project/424444#4244444Answer by cgreeno for What's the best method for setting up a new .NET project?cgreeno2009-01-08T14:37:02Z2009-11-16T11:43:41Z<p><a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">Cruise Control</a> is a great product for Continuous Integration. Another option that is a little "easier" to set up is Jet Brains's <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>. </p>
http://stackoverflow.com/questions/101125/force-browser-to-use-new-css3Force browser to use new CSScgreeno2008-09-19T11:08:45Z2009-11-11T18:32:57Z
<p>Is there a way to check if the user has a different version of the CSS cached by their browser and if so force their browser to pull the new version?</p>
http://stackoverflow.com/questions/1716721/using-aspnet-range-validator-on-html-input-control/1716865#17168651Answer by cgreeno for Using aspnet range validator on html input controlcgreeno2009-11-11T17:42:35Z2009-11-11T18:02:06Z<p>Based on this link from <a href="http://msdn.microsoft.com/en-us/library/ms972961.aspx" rel="nofollow">MSDN</a> it should work </p>
<pre><code> <td>
<asp:RangeValidator id="id" runat="server" ErrorMessage="not 2"
ControlToValidate="txtbx_value" MaximumValue="3" MinimumValue="1"
Type="Integer"> </asp:RangeValidator>
</td>
<td>User ID:</td>
<td><input type=text runat=server id=txtbx_value></td>
</code></pre>
http://stackoverflow.com/questions/127869/sax-vs-xmltextreader-sax-in-c3SAX vs XmlTextReader - SAX in C#cgreeno2008-09-24T15:26:43Z2009-11-10T22:29:40Z
<p>I am attempting to read a large XML document and I wanted to do it in chunks vs <code>XmlDocument</code>'s way of reading the entire file into memory. I know I can use <code>XmlTextReader</code> to do this but I was wondering if anyone has used SAX for .NET? I know Java developers swear by it and I was wondering if it is worth giving it a try and if so what are the benefits in using it. I am looking for specifics.</p>
http://stackoverflow.com/questions/447089/embed-image-into-a-textbox2Embed image into a textboxcgreeno2009-01-15T15:11:08Z2009-11-10T22:26:04Z
<p>I have a Windows Forms (.Net 2.0) app and I have a request to embed some custom images into some textboxes(like the new version of Tortoise does). </p>
http://stackoverflow.com/questions/18120/best-programming-books-in-2008/418013#41801310Answer by cgreeno for Best Programming Books in 2008cgreeno2009-01-06T20:33:17Z2009-10-22T20:51:32Z<p><a href="http://stackoverflow.com/users/22656/jon-skeet">Jon Skeet's</a> <a href="http://www.manning.com/skeet/" rel="nofollow">C# in Depth</a> is quite good!</p>
http://stackoverflow.com/questions/1608129/static-cache-error/1608144#16081442Answer by cgreeno for Static Cache Errorcgreeno2009-10-22T15:45:55Z2009-10-22T15:51:59Z<p>You need to use the <a href="http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.80%29.aspx" rel="nofollow">lock</a> statement whenever you are accessing or updating your static cache. The lock statement will block other threads from from executing until it is finished. If you don't do this you might have one thread attempting to loop through the collection at the same time as another thread is removing a row. Depending on you exact scenario you might want to use <a href="http://en.wikipedia.org/wiki/Double-checked%5Flocking" rel="nofollow">double check locking</a>. </p>
<pre><code> static readonly object lockObj = new object();
private static List<myObject> _myObject;
public List<myObject> FillMyObject()
{
lock (lockObj)
{
if(_myObject == null || myTimer)
_myObject = getfromDataBase();
}
}
public List<myObject> UpdateMyObject(somevalue)
{
lock (lockObj)
{
_myObject.RemoveAll(delegate(myObject o)
{
return o.somevalue == somevalue;
});)
}
}
</code></pre>
<p><a href="http://www.yoda.arachsys.com/csharp/singleton.html" rel="nofollow">Further Reading</a></p>
http://stackoverflow.com/questions/648409/inlining-functions/648412#64841217Answer by cgreeno for Inlining Functionscgreeno2009-03-15T19:46:51Z2009-10-13T15:39:29Z<p><strong>What it is</strong></p>
<p>In the terms of C and C++ you use the inline keyword to tell the compiler to call a routine without the overhead of pushing parameters onto the stack. The Function instead has it's machine code inserted into the function where it was called. This can create a significant increase in performance in certain scenarios.</p>
<p><strong>Dangers</strong></p>
<p>The speed benefits in using "inlining" decrease significantly as the size of the inline function increases. Overuse can actually cause a program to run slower. Inlining a very small accessor function will usually decrease code size while inlining a very large function can dramatically increase code size.</p>
<p><strong>Inlining in C#</strong></p>
<p>In C# inlining happens at the JIT level in which the JIT compiler makes the decision. There is currently no mechanism in C# which you can explicitly do this. If you wish to know what the JIT compiler is doing then you can call: <code>System.Reflection.MethodBase.GetCurrentMethod().Name</code> at runtime. If the Method is inlined it will return the name of the caller instead.</p>
<p>In C# you cannot force a method to inline but you can force a method not to. If you really need access to a specific callstack and you need to remove inlining you can use: <code>MethodImplAttribute</code> with <code>MethodImplOptions.NoInlining</code>. In addition if a method is declared as virtual then it will also not be inlined by the JIT. The reason behind this is that the final target of the call is unknown.</p>
<p><a href="http://blogs.msdn.com/davidnotario/archive/2004/11/01/250398.aspx" rel="nofollow">More on inlining</a> </p>
http://stackoverflow.com/questions/153376/fixed-statement-in-c/153442#1534422Answer by cgreeno for Fixed Statement in C#cgreeno2008-09-30T15:00:37Z2009-10-07T10:58:26Z<p><a href="http://msdn.microsoft.com/en-us/library/f58wzh21.aspx" rel="nofollow">MSDN</a> has a very similar example. The fixed statement basically blocks garbage collection. In .Net if you use a pointer to a memory location the runtime can reallocate the object to a "better" location at any time. SO if you want to access memory directly you need to fix it in place.</p>
http://stackoverflow.com/questions/523706/xhtml-or-html-4-01/523774#5237745Answer by cgreeno for XHTML or HTML 4.01 ?cgreeno2009-02-07T13:33:50Z2009-10-07T10:47:40Z<p>XHTML is not very <a href="http://www.w3schools.com/tags/default.asp" rel="nofollow">different</a> from the HTML 4.01 standard.</p>
<p>The Most Important Differences:</p>
<ul>
<li>XHTML elements must be properly
nested</li>
<li>XHTML elements must always be closed</li>
<li>XHTML elements must be in lowercase</li>
<li>XHTML documents must have one root
element</li>
<li>XHTML Attribute names must be in
lower case</li>
<li>XHTML Attribute values must be quoted</li>
<li>XHTML Attribute minimization is
forbidden</li>
<li>XHTML The id attribute replaces the
name attribute</li>
<li>XHTML DTD defines mandatory elements</li>
</ul>
<p>HTML does not force these things but most browsers are quickly starting to expect it.
Despite IE8 dropping it's <a href="http://en.wikipedia.org/wiki/Trident%5F%28layout%5Fengine%29" rel="nofollow">Trident</a> engine it looks as though they will still not support XHtml SO <em>Strict</em> is probably going to be your best option.</p>
<p>UPDATE:</p>
<p>Web Standard committee have opted against XHTML 2 and for HTML 5.</p>
http://stackoverflow.com/questions/651412/are-datasets-scalable-would-a-site-like-myspace-use-them-for-data-retrieval/651444#6514444Answer by cgreeno for Are datasets scalable? Would a site like myspace use them for data retrieval?cgreeno2009-03-16T17:46:01Z2009-10-07T10:44:31Z<p><em>Disclaimer- These are my opinions taken from person experience</em></p>
<p>Datasets are so painful to use I would REALLY not recommend using them unless you had some specific need for them. I have worked on large .NET 1.0 era projects (with thousands datasets) and I find them <strong>hard to maintain, use and test</strong>. You have to access everything with array based syntax unless you use strongly typed datasets, which you will spend forever maintaining. </p>
<p>I would really recommend using an ORM like <a href="http://www.hibernate.org/343.html" rel="nofollow">NHibernate</a>. You can learn more about NHibernate with these <a href="http://www.summerofnhibernate.com/" rel="nofollow">screen casts</a>. </p>
<p>If you are interested in Saleable architecture you should look at the <a href="http://highscalability.com/" rel="nofollow">High Scalability</a> web site, where you will be able to find the <a href="http://highscalability.com/myspace-architecture" rel="nofollow">MySpace Architecture</a> that you mention in your question. </p>
<p>For a more unbiased opinion on Datasets please check this <a href="http://msdn.microsoft.com/en-gb/magazine/cc163751.aspx" rel="nofollow">MSDN link</a> (summary below) </p>
<p><strong>When to Use Which</strong></p>
<blockquote>
<p>Both DataSets and custom classes don't
limit what you can do in any way, and
both can be used to accomplish the
same aims. That said, DataSets are
fantastic tools for prototyping
applications and represent excellent
solutions for building systems in a
kind of emergency—a limited budget, an
approaching deadline, or a short
application lifetime. For relatively
simple applications, custom entities
add a perhaps unnecessary level of
complexity. In this case, I suggest
that you seriously consider using
DataSets.</p>
<p>In the economy of a large, durable,
complex enterprise system that takes
several months to complete, the cost
of architecting and implementing a
bunch of collections classes is
relatively minimal and is incurred
only once. The advantages in terms of
performance, expressivity,
readability, and ease of maintenance
largely repay the investment. You are
not bound to a tabular rendering of
data. Business rules and custom
business entities can't always be
adapted to look like a collection of
tables. In general, you should avoid
adapting data to the data
container—quite the reverse, I'd say.
Finally, using custom classes makes
for easier unit testing because
classes and logic are more strictly
related than with DataSets. <a href="http://msdn.microsoft.com/en-gb/magazine/cc163751.aspx#S7" rel="nofollow">In Figure 3</a>,
you find a synoptic table with
DataSets, typed DataSets, and custom
entities compared by several factors.</p>
</blockquote>
http://stackoverflow.com/questions/627865/how-does-the-asp-net-cache-work/627875#62787521Answer by cgreeno for How does the ASP.NET Cache work?cgreeno2009-03-09T20:23:13Z2009-10-01T08:51:41Z<p>As applications grow it is quite normal to leverage caching as a way to gain scalability and keep consistent server response times. Caching works by storing data in memory to drastically decrease access times. To get started I would look at ASP.NET caching. </p>
<p>There are 3 types of general Caching techniques in ASP.NET web apps:</p>
<ul>
<li>Page Output Caching(Page Level)</li>
<li>Page Partial-Page Output(Specific Elements
of the page)</li>
<li>Programmatic or Data Caching</li>
</ul>
<p><strong>Output Caching</strong></p>
<p>Page level output caching caches the html of a page so that each time ASP.NET page requested it checks the output cache first. You can vary these requests by input parameters(<a href="http://msdn.microsoft.com/en-us/library/system.web.ui.outputcacheparameters.varybyparam.aspx" rel="nofollow">VaryByParam</a>) so the the page will only be cached for users where ID=1 if a requests come in where ID=2 asp.net cache is smart enough to know it needs to re-render the page. </p>
<p><strong>Partial-Page Caching</strong></p>
<p>a lot of times it wont make sense to cache the entire page in these circumstances you can use partial Page caching. This is usually used with user controls and is set the same way as page level only adding the OutputCache declarative inside the usercontrol. </p>
<p><strong>Data Caching</strong></p>
<p>You can store objects or values that are commonly used throughout the application. It can be as easy to as:</p>
<pre><code>Cache["myobject"] = person;
</code></pre>
<p><strong>Enterprise Level Caching</strong></p>
<p>It is worth mention that there are many Enterprise level caching architectures that have come about to leverage the effectiveness caching. <a href="http://sourceforge.net/projects/memcacheddotnet/" rel="nofollow">Memcache</a> for .net and <a href="http://msdn.microsoft.com/en-us/data/cc655792.aspx" rel="nofollow">Velocity</a> are a couple. </p>
<p><strong>In General</strong> </p>
<p>You can't really make blanket statements on what you should and shouldn't cache because every application is different. However, you can make a few generalizations that hold true <strong>MOST</strong> of time. Static elements like images and content are OK to cache. Even a dynamic page that is getting hammered is worth caching for 5-10 seconds, it will make a world of difference to your web server.</p>
<p><a href="http://msdn.microsoft.com/en-us/kb/kb00323290.aspx" rel="nofollow">Caching overview</a></p>
http://stackoverflow.com/questions/504909/database-deployment-strategies-sql-server10Database Deployment Strategies (SQL Server)cgreeno2009-02-02T21:09:10Z2009-09-18T21:11:01Z
<p>I am looking for a way to do daily deployments and keep the database scripts in line with releases. </p>
<p>Currently, we have a fairly decent way of deploying our source, we have unit code coverage, Team Server continuous integration and rollback procedures.<br />
The problem is keeping the DB scripts in line with a release. Everyone seems to try the script out on the test DB then run them on live, when the ORM mappings are updated(IE the changes goes live) then it picks up the new column. </p>
<p>The first problem is that non of the scripts HAVE to be written anywhere, generally everyone "attempts" to put them into a subversion folder but some of the lazier people just run the script on live and most of the time no one knows who has done what to the DB.</p>
<p>The second issue is that we have 4 test databases and they are ALWAYS out of line and the only way to truly line them back up is to do a restore from the live database. </p>
<p>I am a big believer that a process like this needs to be simple, straightforward and easy to use in order to help a developer, not hinder them. </p>
<p>What I am looking for a technique/ideas that make it EASY for the developer to want to record their DB scripts so they can be ran as part of a release procedure.<strong>A process that the developer would want to follow</strong>.</p>
<p>Any stories, use cases or even a link would helpful.</p>
http://stackoverflow.com/questions/575584/how-to-make-pdf/575605#5756059Answer by cgreeno for How to make pdf ?cgreeno2009-02-22T19:46:11Z2009-08-28T20:42:06Z<p><a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">iTextSharp</a> is is a great open source project that can be downloaded from SourceForge. It is widely used, free and easy to get up and running with lots of <a href="http://www.codeproject.com/KB/graphics/iTextSharpTutorial.aspx" rel="nofollow">examples</a> and <a href="http://itextsharp.sourceforge.net/tutorial/index.html" rel="nofollow">Tutorials</a> available. </p>
<p>You can get up an running quite quickly example:</p>
<pre><code>Document doc = new Document();
PdfWriter.getInstance(doc, new FileStream("first.pdf", FileMode.Create));
doc.Open();
doc.Add(new Paragraph("Hello World"));
doc.Close();
</code></pre>
http://stackoverflow.com/questions/1348795/what-can-be-the-regex-for-the-following-string/1348817#1348817-1Answer by cgreeno for what can be the regex for the following stringcgreeno2009-08-28T19:12:52Z2009-08-28T20:23:09Z<p><a href="http://www.regexbuddy.com/" rel="nofollow">Regex buddy</a>(pay) and <a href="http://gskinner.com/RegExr/" rel="nofollow">RegExr</a>(free) can be a big help in learning RegEx if you are interested.</p>
http://stackoverflow.com/questions/563030/where-can-i-find-a-good-nhibernate-and-asp-net-mvc-reference-application/563309#5633097Answer by cgreeno for Where can I find a good NHibernate and ASP.NET MVC Reference Applicationcgreeno2009-02-18T23:19:42Z2009-08-22T21:36:50Z<p>I would try to tackle them independently. </p>
<p>Before Billy McCafferty wrote sharp-architecture he wrote a(what I think is) a must read on <a href="http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx" rel="nofollow">codeproject</a> about best practices with NHibernate. Also, I have just discovered some <a href="http://dimecasts.net/Casts/ByTag/MVC" rel="nofollow">DimeCasts</a>(by Kyle Baley) under the MVC tag that are very good.</p>
<p><a href="http://blog.wekeroad.com/" rel="nofollow">Rob Conery</a> created the ASP.NET <a href="http://www.asp.net/learn/mvc-videos/" rel="nofollow">MVC Storefront</a> video series which he goes over a lot of patterns and practices. The backend written is using Linq to SQL but can be adapted with <a href="http://ayende.com/Blog/archive/2007/03/16/Linq-for-NHibernate.aspx" rel="nofollow">LinQ to NHibernate</a>. </p>
<p>The <a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">S# arch source</a> itself now comes with a sample projects as well. </p>
<p>inally, there is <a href="http://code.google.com/p/codecampserver/" rel="nofollow"><strong>Code Camp Server</strong></a> that is built with MVC.Net and NHibernate and uses pretty much every open source tool you can think of... </p>
<p><em>sidenote</em></p>
<p>If your interested in getting rid of those annoying XML files when using NHibernate you might also want to look at <a href="http://nhforge.org/blogs/nhibernate/archive/2008/09/02/a-fluent-interface-to-nhibernate-part-1.aspx" rel="nofollow">fluent</a>.</p>
http://stackoverflow.com/questions/618535/what-is-the-difference-between-decimal-float-and-double-in-c/618542#61854218Answer by cgreeno for What is the difference between Decimal, Float and Double in C#?cgreeno2009-03-06T11:33:02Z2009-08-17T09:15:32Z<p>Precision is the main difference. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/b1e65aza%28VS.80%29.aspx" rel="nofollow">Float</a> - 7 digits (32 bit)</p>
<p><a href="http://msdn.microsoft.com/en-us/library/678hzkk9%28VS.71%29.aspx" rel="nofollow">Double</a>-15-16 digits (64 bit)</p>
<p><a href="http://msdn.microsoft.com/en-us/library/364x0z75%28VS.80%29.aspx" rel="nofollow">Decimal</a> -28-29 significant digits (128 bit)</p>
<p>Decimals have much higher precession and are usually used within financial applications that require a high degree of accuracy. Decimals are much slower (<a href="http://gregs-blog.com/2007/12/10/dot-net-decimal-type-vs-float-type/" rel="nofollow">up to 20X times in some tests</a>) than a double\float. </p>
<p>Decimals and Floats/Doubles cannot be compared without a cast whereas Floats and Doubles can. Decimals also allow the encoding or trailing zeros.</p>
http://stackoverflow.com/questions/1254895/net-recommended-video-tutorial-for-linq/1254964#12549642Answer by cgreeno for .NET: recommended video tutorial for LINQ?cgreeno2009-08-10T13:41:36Z2009-08-10T13:41:36Z<p>There is a few on <a href="http://www.dimecasts.net/" rel="nofollow">dimecasts</a> </p>
http://stackoverflow.com/questions/685953/looping-best-practices/685958#68595812Answer by cgreeno for Looping best practicescgreeno2009-03-26T14:10:44Z2009-07-31T23:11:35Z<p>To exit a loop you can use the <a href="http://msdn.microsoft.com/en-us/library/adbctzc4%28VS.80%29.aspx" rel="nofollow">break</a> statement, to go onto the next record you can use the <a href="http://msdn.microsoft.com/en-us/library/923ahwt1%28VS.80%29.aspx" rel="nofollow">continue</a> statement. </p>
<pre><code>for(int i = 0; i < 1000; i++)
{
if(magicValue1)
break;
if(magicValue2)
continue;
}
</code></pre>
<p><strong>I AM NOT CONDONING THE USE OF THE GOTO STATEMENT I AM SIMPLY POINTING OUT A POSSIBLE USE CASE</strong></p>
<p>You can use <strong>goto</strong> jump statement to start/exit a loop, however I would stay away from this option unless you are using <strong>nested looping</strong>. I think the goto statement still has its uses for optimizing, exiting cleanly ect.. but in general it is best to use it <strong>quite</strong> sparingly.</p>
<pre><code>for(int i = 0; i < 100; i++)
{
start:
for(int i = 0; i < 10; i++)
{
if(magicValue1)
goto end;
if(magicValue2)
goto start;
}
}
end :
</code></pre>
http://stackoverflow.com/questions/387488/remove-or-reset-cookies/387522#3875222Answer by cgreeno for Remove or Reset Cookiescgreeno2008-12-22T22:11:26Z2009-07-29T10:47:53Z<p>You need to use the Response not the Request</p>
<pre><code>Response.Cookies["TemplateName"].Value = "";
Response.Cookies["TemplateName"].Expires = DateTime.Now;
</code></pre>
<p>EDIT For VB.</p>
<pre><code>Dim subkeyName As String
subkeyName = "userName"
Dim aCookie As HttpCookie = Request.Cookies("userInfo")
aCookie.Values.Remove(subkeyName)
aCookie.Expires = DateTime.Now.AddDays(1)
Response.Cookies.Add(aCookie)
Response.Cookies("userName").Value = "patrick"
Response.Cookies("userName").Expires = DateTime.Now.AddDays(1)
</code></pre>
<p>These Examples come right off the <a href="http://msdn.microsoft.com/en-us/library/ms178194.aspx" rel="nofollow">MSDN site</a></p>
<p><em>SideNote</em></p>
<p>Often people attempt to use</p>
<pre><code>Request.Cookies.Remove("MyCookie");
</code></pre>
<p>Which will only remove the cookie from the "request collection", If you want to remove a cookie then you need to expire it. More info <a href="http://briancaos.wordpress.com/2008/07/22/add-and-remove-cookies/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb/533052#5330526Answer by cgreeno for Avoiding upload of files larger than 10mbcgreeno2009-02-10T16:30:05Z2009-07-28T09:28:10Z<p>You can set the limit in the Web.Config</p>
<pre><code><system.web>
<httpRuntime maxRequestLength="xxxxx" executionTimeout="xx"/>
</system.web>
</code></pre>
<p><em>sidenote:</em> </p>
<p>IIS7 will reject any file larger then 30 meg by default you can increase this by adding the following code</p>
<pre><code><security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”XXXXXX″ />
</requestFiltering>
</security>
</code></pre>
<p>If you are looking to get the content size before an upload you should be able to use the HTTP method HEAD to retrieve Content-Length.</p>
<p><a href="http://www.eggheadcafe.com/tutorials/aspnet/2c13cafc-be1c-4dd8-9129-f82f59991517/the-lowly-http-head-reque.aspx" rel="nofollow">Implementation</a> </p>
http://stackoverflow.com/questions/169310/is-using-resharper-a-time-saver14Is using resharper a time saver?cgreeno2008-10-03T23:28:30Z2009-07-26T20:47:53Z
<p>I have installed ReSharper and "played" with it twice now. I have always found it annoying and that it got in the way of the hotkeys I was already using in Visual Studio. The people that use it tend to swear by it. </p>
<p>For those of you that do use it, where do you find it saves you the most time or what do you think its best feature is? Please be specific. </p>
<p><strong>Result(6 months later)</strong> </p>
<p>Once I got over the initial invasiveness I found resharper to be very useful and I now depend on it so much that I can't remember how I used to get by before I started using it.... </p>
<p>I especially like </p>
<p>Ctrl T --> go to type</p>
<p>go to base </p>
<p>go to inheritor</p>
<p>extract interface</p>
http://stackoverflow.com/questions/1177371/problem-converting-web-to-web-project-in-vs2008/1177448#11774480Answer by cgreeno for Problem Converting Web To Web Project In VS2008cgreeno2009-07-24T12:49:53Z2009-07-24T13:09:14Z<p><a href="http://webproject.scottgu.com/CSharp/Migration2/Migration2.aspx" rel="nofollow">How to convert in a Web Site Project</a> - will get you started - it is for VS2005 but will still be applicable for Visual Studio 2008.</p>
<p>I think you need to understand the <a href="http://stackoverflow.com/questions/539063/web-site-projects-vs-web-application-which-is-better/539107">difference between the 2 types of projects</a> before you can understand how to convert them successfully. That said, I would guess that "BasePage" was in you appCode folder and has now been converted into a different namespace. </p>
http://stackoverflow.com/questions/623815/what-is-the-difference-between-a-session-and-a-cookie/623820#6238208Answer by cgreeno for What is the difference between a Session and a Cookie?cgreeno2009-03-08T16:28:48Z2009-07-06T09:27:24Z<p><strong>Sessions</strong> </p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178581.aspx" rel="nofollow">Sessions</a> are stored per-user in memory(or an alternative <a href="http://msdn.microsoft.com/en-us/library/ms178581.aspx" rel="nofollow">Session-State</a>) on the server. Sessions use a cookie(<em>session key</em>) to tie the user to the session. This means no "sensitive" data is stored in the cookie on the users machine. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178581.aspx" rel="nofollow">Sessions</a> are generally used to maintain state when you navigate through a website. However, they can also be used to hold commonly accessed objects. <em>Only if the Session-state is set to InProc, if set to another <a href="http://msdn.microsoft.com/en-us/library/ms178586.aspx" rel="nofollow">Session-State mode</a> the object must also serializable.</em></p>
<pre><code>Session["userName"] = "EvilBoy";
if(Session["userName"] != null)
lblUserName.Text = Session["userName"].ToString();
</code></pre>
<p><strong>Cookies</strong></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178194.aspx" rel="nofollow">Cookies</a> are stored per-user on the users machine. A cookie is usually just a bit of information. Cookies are usually used for simple user settings colours preferences ect. <strong>No sensitive information should ever be stored in a cookie.</strong> </p>
<p>You can never fully trust that a cookie has not been tampered with by a user or outside source however if security is a big concern and you must use cookies then you can either encrypt your cookies or set them to only be transmitted over SSL. A user can clear there cookies at any time or not allow cookies altogether so you cannot count on them being there just because I user has visited your site in the past.</p>
<pre><code>//add a username Cookie
Response.Cookies["userName"].Value = "EvilBoy";
Response.Cookies["userName"].Expires = DateTime.Now.AddDays(10);
//Can Limit a cookie to a certain Domain
Response.Cookies["domain"].Domain = "Stackoverflow.com";
//request a username cookie
if(Request.Cookies["userName"] != null)
lblUserName.Text = Server.HtmlEncode(Request.Cookies["userName"].Value);
</code></pre>
<p><em>sidenote</em></p>
<p>It is worth mentioning that ASP.NET also supports <a href="http://msdn.microsoft.com/en-us/library/aa479314.aspx" rel="nofollow">cookieless</a> state-management</p>
http://stackoverflow.com/questions/101145/check-if-xml-element-exists3Check if XML Element existscgreeno2008-09-19T11:15:59Z2009-06-21T22:49:36Z
<p>How can someone validate that a specific element exists in an XML file? Say I have an ever changing XML file and I need to verify every element exists before reading/parsing it. </p>
http://stackoverflow.com/questions/428573/managing-complex-web-config-files-between-deployment-environments/428622#4286224Answer by cgreeno for Managing complex Web.Config files between deployment environments.cgreeno2009-01-09T16:04:26Z2009-06-21T13:59:24Z<p>You could use Build Events to manage your web configs. <a href="http://www.hanselman.com/blog/ManagingMultipleConfigurationFileEnvironmentsWithPreBuildEvents.aspx" rel="nofollow">Hanselman</a> has a good article about it.</p>
<p>Basically you have all your different web.configs in the solution you then create (some) new build types. Depending on the build type you run a web.config is copied over the referenced one! </p>
http://stackoverflow.com/questions/515787/webrequest-disallow-autoredirect/515822#515822Comment by cgreeno on Webrequest Disallow AutoRedirectcgreeno2009-11-25T22:38:13Z2009-11-25T22:38:13ZI made an error while editing...http://stackoverflow.com/questions/1783786/unlimited-bandwith-disk-space-shared-hostingComment by cgreeno on 'unlimited' bandwith / disk space shared hostingcgreeno2009-11-23T15:22:08Z2009-11-23T15:22:08ZYou get what you pay for.... http://stackoverflow.com/questions/1716721/using-aspnet-range-validator-on-html-input-controlComment by cgreeno on Using aspnet range validator on html input controlcgreeno2009-11-11T18:05:09Z2009-11-11T18:05:09ZWithout any additional info or some code it is hard to tellhttp://stackoverflow.com/questions/1608129/static-cache-error/1608144#1608144Comment by cgreeno on Static Cache Errorcgreeno2009-10-22T16:02:48Z2009-10-22T16:02:48ZPlease refer to "Further Reading"http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103878#103878Comment by cgreeno on What non-programming books should programmers read?cgreeno2009-08-21T19:30:26Z2009-08-21T19:30:26ZThis is a GREAT book!!http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/36912#36912Comment by cgreeno on What is the worst interview question?cgreeno2009-08-12T21:50:43Z2009-08-12T21:50:43ZIn the UK smarties SUCK....http://stackoverflow.com/questions/1254895/net-recommended-video-tutorial-for-linq/1254964#1254964Comment by cgreeno on .NET: recommended video tutorial for LINQ?cgreeno2009-08-10T15:01:45Z2009-08-10T15:01:45Z<a href="http://www.dimecasts.net/Casts/ByTag/Linq" rel="nofollow">dimecasts.net/Casts/ByTag/Linq</a>http://stackoverflow.com/questions/170997/what-is-the-best-way-to-remove-a-table-row-with-jquery/694124#694124Comment by cgreeno on What is the best way to remove a table row with jQuery?cgreeno2009-07-23T12:46:12Z2009-07-23T12:46:12ZYou can also use $(this).parents('tr')http://stackoverflow.com/questions/623815/what-is-the-difference-between-a-session-and-a-cookie/623820#623820Comment by cgreeno on What is the difference between a Session and a Cookie?cgreeno2009-07-06T09:27:54Z2009-07-06T09:27:54ZYes I did, thankshttp://stackoverflow.com/questions/428573/managing-complex-web-config-files-between-deployment-environments/428622#428622Comment by cgreeno on Managing complex Web.Config files between deployment environments.cgreeno2009-06-21T13:59:42Z2009-06-21T13:59:42ZFixed the spelling error thanks!http://stackoverflow.com/questions/589874/in-wpf-what-are-the-differences-between-the-xname-and-name-attributes/593151#593151Comment by cgreeno on In WPF, what are the differences between the x:Name and Name attributes?cgreeno2009-06-18T10:44:22Z2009-06-18T10:44:22Z+1 Great Answer!http://stackoverflow.com/questions/965926/how-should-i-rewrite-a-very-large-compound-if-statement-in-c/965945#965945Comment by cgreeno on How should I rewrite a very large compound if statement in C#?cgreeno2009-06-08T17:13:01Z2009-06-08T17:13:01Zlooking like an arrow is never a good signhttp://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application/318045#318045Comment by cgreeno on Drag'n'drop one or more mails from Outlook to C# WPF applicationcgreeno2009-06-08T13:25:33Z2009-06-08T13:25:33ZI did test the code before I posted it, perhaps you need to change the Encoding? http://stackoverflow.com/questions/964072/datagrid-textbox-works-in-ie-6-7-but-not-othersComment by cgreeno on datagrid / textbox works in IE 6/7, but not otherscgreeno2009-06-08T09:45:39Z2009-06-08T09:45:39ZYou need to post some code...http://stackoverflow.com/questions/799704/multiple-signin-pages-in-one-asp-net-applicationComment by cgreeno on Multiple signin pages in one asp.net applicationcgreeno2009-04-28T21:19:02Z2009-04-28T21:19:02ZDo you have 2 different URL's or query string args to push the user to the correct login page initially?