User NetHawk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T06:48:13Zhttp://stackoverflow.com/feeds/user/42704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1307767/lambda-query-to-reverse-order-a-list-by-date0Lambda query to reverse order a list by dateNetHawk2009-08-20T17:43:38Z2009-08-20T18:12:40Z
<p>I have this function that shows a list of messages in reverse order.</p>
<pre><code> protected void setupMessages(IList<Message> Messages)
{
List<Message> messages = new List<Message>() ;
messages.AddRange( Messages.OrderBy(message => message.DateAdded).Reverse());
MessagesRepeater.DataSource = messages;
MessagesRepeater.DataBind();
}
</code></pre>
<p>I was wondering if there was a way to reverse the order within the lambda query without calling the Reverse Method? Or is calling Reverse() the only way to do this?</p>
http://stackoverflow.com/questions/1032584/how-do-i-know-when-a-session-has-ended-when-sessionstate-inproc1How do I know when a session has ended when sessionState != InProcNetHawk2009-06-23T13:29:35Z2009-06-23T18:56:24Z
<p>I would like to have the session state in a separate process for my app, but I would also like to have some code run whenever a user's session is over. (changing a status string that indicates whether they are online or not and decrementing the online users count.)</p>
<p>If my session state is InProc in the web config, I can use the Session_End method to run this code, but how do I do this if not?</p>
http://stackoverflow.com/questions/1032736/is-there-any-open-forum-software-that-uses-the-asp-net-membership-provider0Is there any Open Forum software that uses the ASP.NET membership ProviderNetHawk2009-06-23T14:00:06Z2009-06-23T18:09:14Z
<p>I have downloaded a few forum packages form Codeplex.net, and looked at YetAnotherForum, but they don't seem to use the ASP.Net membership provider. I am using MySQL for a database and would like to have a forum using the same user base without too much extra work, since I don't know if the forum will be popular.</p>
<p>Are there any forum solutions that use the membership provider so that I can easily plug in my current provider?</p>
http://stackoverflow.com/questions/1014909/when-do-you-believe-software-ais-will-truly-be-able-to-pass-the-turing-test/1014966#10149660Answer by NetHawk for When do you believe software AIs will truly be able to pass the Turing Test?NetHawk2009-06-18T20:17:52Z2009-06-18T20:17:52Z<p>Several <a href="http://www.chatbots.org" rel="nofollow">chat programs</a> can fool actual people
<a href="http://www.compapp.dcu.ie/~humphrys/eliza.html" rel="nofollow">"Eliza"</a> is probably the first and seems primitive now, although she can actually fool some people.
And these programs continue to get <a href="http://news.cnet.com/8301-13860_3-9831133-56.html" rel="nofollow">more sophisticated </a>.</p>
http://stackoverflow.com/questions/1014858/is-writing-specifications-for-hobby-projects-the-only-way-for-them-to-be-finished/1014902#10149022Answer by NetHawk for Is writing specifications for hobby projects the only way for them to be finished?NetHawk2009-06-18T20:06:56Z2009-06-18T20:06:56Z<p>I also have several hobby projects that I have not finished. I have about 10 and have written a specification for exactly one of them, the largest in scope (also a game). </p>
<p>I have not finished either the ones without specifications, nor the one with. I think this is because I never publish the work or show it to anyone so it remains full of bugs and never 'finished. </p>
<p>I suppose that this means that regardless of whether or not you have a spec, it will not affect the success of the project as much as other factors, like having the time, motivation, help, and having confidence. </p>
http://stackoverflow.com/questions/694095/gdi-resizing-for-pixel-zoom0GDI+ resizing for Pixel zoomNetHawk2009-03-29T04:20:53Z2009-06-16T12:29:38Z
<p>I want to resize an image with the GDI library so that when I resize it to be larger than before there is no blending. (Like when you zoom in on an image in a paint program)</p>
<p>EG: If my image is 2px wide, and 2px tall<br />
(white, white,<br />
white, black)<br />
, and I resize it to be 100% larger, it is 4px by 4px tall<br />
(white, white, white, white,<br />
white, white, white, white,<br />
white, white, black, black,<br />
white, white, black, black) </p>
<p>What InterpolationMode or Smoothing mode (or other properties) of a graphics object can I use to achieve this? The combinations that I have tried so far all cause grey to appear in the test image.</p>
<p>Here is the code that I'm using </p>
<pre><code> /// <summary>
/// Do the resize using GDI+
/// Credit to the original author
/// http://www.bryanrobson.net/dnn/Code/Imageresizing/tabid/69/Default.aspx
/// </summary>
/// <param name="srcBitmap">The source bitmap to be resized</param>
/// <param name="width">The target width</param>
/// <param name="height">The target height</param>
/// <param name="isHighQuality">Shoule the resize be done at high quality?</param>
/// <returns>The resized Bitmap</returns>
public static Bitmap Resize(Bitmap srcBitmap, int width, int height, bool isHighQuality)
{
// Create the destination Bitmap, and set its resolution
Bitmap destBitmap = new Bitmap((int)Convert.ToInt32(width), (int)Convert.ToInt32(height), PixelFormat.Format24bppRgb);
destBitmap.SetResolution(srcBitmap.HorizontalResolution, srcBitmap.VerticalResolution);
// Create a Graphics object from the destination Bitmap, and set the quality
Graphics grPhoto = Graphics.FromImage(destBitmap);
if (isHighQuality)
{
grPhoto.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
grPhoto.InterpolationMode = InterpolationMode.HighQualityBicubic;
}
else
{
grPhoto.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None; //? this doesn't work
grPhoto.InterpolationMode = InterpolationMode.NearestNeighbor; //? this doesn't work
}
// Do the resize
grPhoto.DrawImage(srcBitmap,
new Rectangle(0, 0, width, height),
new Rectangle(0, 0, srcBitmap.Width, srcBitmap.Height),
GraphicsUnit.Pixel);
grPhoto.Dispose();
return destBitmap;
}
</code></pre>
http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not4Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:18:25Z2009-06-15T16:45:29Z
<p>Where I work, we do a very large number very small ASP.NET apps, and it has happened a few times that sites have been deployed in precompiled format, and the app needs to be changed, but the version of the code available in source control is out of date and the developer is not available. The app's dll has to be decompiled and hacked back together. </p>
<p>Ideally, it would never happen that a develpoer rushes a change through testing and production and skips checking in the change, we have since made changes to our policies to keep this from happening, but I wonder if the overhead of compiling a site on the server whenever the app pool restarts is a big enough problem that we should avoid uploading our code directly to the server. It would be easier to check the version in source control vs the actual live version if we could download the live source. </p>
<p>What are the advantages of precompiling VS uploading cs files directly to the server and having them compiled there?</p>
http://stackoverflow.com/questions/976529/not-taking-mpc-in-college-what-do-you-think/977109#9771090Answer by NetHawk for Not taking MPC in college, what do you think?NetHawk2009-06-10T17:38:51Z2009-06-10T17:38:51Z<p>The requirements of your program will probably dictate what you decide to take more than your own ideas. </p>
<p>I'll advise you not to take classes because you think they are easy, easy classes can be boring, but while challenging ones are often more rewarding. Take classes on interesting subjects. Bird courses are always a waste of time that will leave you feeling cheated out of hours of your life. </p>
<p>After you have selected your required courses for the term, select classes that look interesting from the calendar as electives and choose more than you plan to take. This way, you can drop classes that turn out to have tedious professors, dumb marking schemes, or that you just don't like. Talk to people about which classes and profs are good and use your academic advisors.</p>
<p>I'd also like to let you know that the Math you took in high school (Trig, algebra, calculus) may have seemed rigid and dull, but the faculty includes a lot of very interesting subjects that you didn't touch before, like Algorithms, Graph theory, Number Theory, Game Theory, Discreet Math and Combinotorics. </p>
<p>In short, just make sure that your time is not wasted.</p>
http://stackoverflow.com/questions/894909/can-i-override-the-context-menu-in-silverlight-for-all-browsers-that-support-silv5Can I override the context menu in Silverlight for all browsers that support Silverlight 2.0?NetHawk2009-05-21T20:15:36Z2009-06-03T01:34:26Z
<p>It seems like a common question on Google, but I couldn't find a satisfactory answer (unless the answer is 'no')</p>
<p>I would like to add menu items or show a custom menu when a user right-clicks on my Silverlight app. </p>
<p>The closest thing that I found catches the context menu in IE, but not in Firefox, and Chrome shows the context menu and then shows the custom event. </p>
<p>(The tutorial I mentioned was here
<a href="http://silverlight.net/blogs/msnow/archive/2008/07/01/tip-of-the-day-14-how-to-right-click-on-a-silverlight-application.aspx" rel="nofollow">http://silverlight.net/blogs/msnow/archive/2008/07/01/tip-of-the-day-14-how-to-right-click-on-a-silverlight-application.aspx</a>)</p>
http://stackoverflow.com/questions/713914/how-to-create-folder-in-code-behind-page/713978#7139781Answer by NetHawk for How to create folder in code behind page.NetHawk2009-04-03T13:46:55Z2009-04-03T13:46:55Z<p>Hi. Before you do this, I learned the hard way that you should not create/remove folders under a running application, or you will cause your app pool to recycle. So make sure that you are creating directories somewhere else on the server. (Hopefully you have that access)</p>
http://stackoverflow.com/questions/710852/gmail-like-file-upload-with-jquery/710906#7109062Answer by NetHawk for Gmail like file upload with jQueryNetHawk2009-04-02T18:08:04Z2009-04-02T18:08:04Z<p><a href="http://www.uploadify.com/" rel="nofollow">Uploadify</a> is another swf (sorry) upload button that uses jquery. Same idea as what Javier mentioned.</p>
http://stackoverflow.com/questions/663694/what-advice-do-you-give-a-non-techie-acquaintance-relative-about-web-development/663756#6637561Answer by NetHawk for What advice do you give a non-techie acquaintance/relative about web development?NetHawk2009-03-19T19:45:22Z2009-03-19T19:45:22Z<p>Coming up with something to tell someone in this situation will not be an easy task. I doubt that there is any book that could teach this, because I have seen very experienced professionals end up with unusable project results. </p>
<p>There is a very important non-technical component to a business relationship, and that is finding someone who you can work with, and who will take the time to explain things to you.</p>
<p>Overall, she will have to learn to:</p>
<ol>
<li><p>Be conscientious, and watch for the more well-known scams, if she is using the internet to find developers. </p></li>
<li><p>Learn to look at code samples and web design portfolios. Good code has comments and consistent style, which are two things that she can look for without the need to fully understand what the code is doing.</p></li>
<li><p>If she is literally using a kid next door, then unpredictable results should be expected. She is going to have to pay to get acceptable results (unfortunately, high price doesn't' guarantee good results)</p></li>
</ol>
http://stackoverflow.com/questions/659685/session-and-app-pool-an-asp-net-app-that-stores-and-displays-images0Session and app pool: an ASP.NET app that stores and displays imagesNetHawk2009-03-18T19:10:19Z2009-03-19T01:21:29Z
<p>I have a .NET app that allows users to upload images to a directory within the webapp and then view them. The problem is that the session gets lost when I upload or delete an image in the webapp directory. It seems that the app pool is getting recycled when I add images, and not just config or cs files.</p>
<p>I have seen this technique used in so many tutorials that I wonder if it does actually work with the right server settings, or if it is a completely flawed technique.</p>
<p>If I add an image to a subdirectory manually, or delete it manually, the session remains.
If I add the image to a subdirectory through visual studio the session remains, but if I delete it through visual studio, the session is lost.</p>
<p>If I upload the images to a folder outside of the webapp then I can't show them in img tags. </p>
<p>I'd be interested to hear what you might do as a workaround.</p>
http://stackoverflow.com/questions/641280/reference-asp-net-control-by-id-in-javascript/641329#6413290Answer by NetHawk for Reference asp.net control by ID in javascript?NetHawk2009-03-13T03:05:14Z2009-03-13T03:05:14Z<p>Oh, and I also found this, in case anyone else is having this problem.</p>
<p>Use a custom jQuery selector for asp.net controls:
<a href="http://john-sheehan.com/blog/custom-jquery-selector-for-aspnet-webforms/" rel="nofollow">http://john-sheehan.com/blog/custom-jquery-selector-for-aspnet-webforms/</a></p>
http://stackoverflow.com/questions/641280/reference-asp-net-control-by-id-in-javascript5Reference asp.net control by ID in javascript?NetHawk2009-03-13T02:37:22Z2009-03-13T03:05:14Z
<p>When asp.net controls are rendered their ids sometimes change, like if they are in a naming container. Button1 may actually have an id of ctl00_ContentMain_Button1 when it is rendered, for example.</p>
<p>I know that you can write your javascript as strings in your cs file, get the control's clientID and inject the script into your page using clientscript, but is there a way that you can reference a control directly from javascript using asp.net ajax?</p>
<p>I have found that writing a function to parse the dom recursively and find a control that CONTAINS the id that I want is unreliable,so I was looking for a best practice rather than a work-around. </p>
http://stackoverflow.com/questions/342614/is-there-an-open-source-asp-net-membership-administration-gui-like-netwebadmin4Is there an open source Asp.net membership administration GUI (like netwebadmin, but works online)?NetHawk2008-12-05T01:13:33Z2009-02-26T10:30:25Z
<p>Visual studio 2005 comes with a project that lets you use the asp.net membership provider to look up, add, edit, and delete users and roles. It unfortunaltly can't be used online, and in order to have an adminiistration area in your site, it appears that you have to code your own admin interface. </p>
<p>Is there an opensource, or free project that has the functionality of netwebadmin, but can be used online? </p>
http://stackoverflow.com/questions/563775/orm-vs-handcoded-data-access-layer/563872#5638720Answer by NetHawk for ORM vs Handcoded Data Access LayerNetHawk2009-02-19T03:45:37Z2009-02-19T03:45:37Z<p>I have used Castle Project's Active Record implementation with NHibernate for a personal project. The project was never deployed, partly because of my inability to work with the ORM choice that I made.</p>
<p>The reason that I decided to use ORM was because I wanted the ability to switch from SQL Server to MYSQL without changing my code. In real projects the decision to use SQL server is already made for me, and it is easier to just write datalayers in the traditional 3-tier way when you know that the database won't change.
But for personal projects I use shared hosting, and MySQL is a cheaper solution. </p>
<p>The reason I went with Castle was because it was very easy to use. With the activewriter plugin for visual studio, I was able to generate my classes and database using a designer (kind of like the linq to SQL designer), and it seemed to fit well with my mental model of how the ORM should dictate your application architecture.</p>
<p>The problem that I had with that ORM was that I wasn't able to find information on how to properly optimize it. It was making extremely large calls to the database. (The SQL query generated to get a user was 1mb of text when I logged it.)</p>
<p>So, I using the ORM, I saved myself a lot of work upfront, but I ran into a wall when I tried to fix the problem with the framework generating too much SQL. (On which I am still slowly working).</p>
<p>Even though I didn't find the solution perfect, I would still try ORM for other personal projects, because it's just me, and I want to spend my project time on fun code, not datalayers. </p>
<p>At work, however, I would probably not be too quick to suggest that we use an ORM, before I was an expert (Maybe after I get several working personal projects under my belt). </p>
http://stackoverflow.com/questions/484048/string-format-c-currency-is-returning-the-string-c-instead-of-formatted-tex3string.Format "C" (currency) is returning the string "C" instead of formatted text. NetHawk2009-01-27T16:19:31Z2009-01-27T16:24:22Z
<p>I am trying to ensure that the text in my control derived from TextBox is always formatted as currency.</p>
<p>I have overridden the Text property like this.</p>
<pre><code> public override string Text
{
get
{
return base.Text;
}
set
{
double tempDollarAmount = 0;
string tempVal = value.Replace("$", "").Replace(",","");
if (double.TryParse(tempVal, out tempDollarAmount))
{
base.Text = string.Format("C", tempDollarAmount);
}
else
{
base.Text = "$0.00";
}
}
}
</code></pre>
<p>Results:</p>
<ul>
<li>If I pass the value "Text"
(AmountControl.Text = "Text";) , the
text of the control on my test page
is set to "$0.00", as expected.</li>
<li>If I pass the value 7
(AmountControl.Text = "7";) , I
expect to see "$7.00", but the text
of the control on my test page is set
to "C".</li>
</ul>
<p>I assume that I am missing something very simple here. Is it something about the property? Or am I using the string format method incorrectly?</p>
http://stackoverflow.com/questions/337978/how-do-i-convert-an-asp-net-page-using-ajax-webmethods-to-an-ajax-enabled-serverc3How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?NetHawk2008-12-03T17:23:04Z2008-12-03T17:43:10Z
<p>In <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">this tutorial I am reading</a>, Dave Ward creates a page that shows the server date in a label without using the update panel. </p>
<p>I am trying to learn how to create servercontrols that use ajax for partial postbacks where methods within the control are called from clientscript generated by the same control, and I think that learning how to convert this page to a server control would be a help me understand what servercontrols use instead of webmethods to expose their methods to clientscript. </p>
<p>I created the page, codebehind, and javascript exactly as the article indicated and got the sample to work.</p>
<p>So, to start trying to convert this to a servercontrol, I moved Dave's Javascript for the page into a file, ~tests/JScript.js:</p>
<pre><code> function UpdateTime() {
PageMethods.GetCurrentDate(OnSucceeded, OnFailed);
}
function OnSucceeded(result, userContext, methodName) {
$get('Literal1').innerHTML = result;
}
function OnFailed(error, userContext, methodName) {
$get('Literal1').innerHTML = "An error occured.";
}
</code></pre>
<p>And put the following class in my App_Code:</p>
<pre><code>namespace foo
{
/// <summary>
/// Summary description for ServerControlTest
/// </summary>
public class ServerControlTest : CompositeControl, IScriptControl
{
ScriptManager sm;
protected override void OnPreRender(EventArgs e)
{
if (!this.DesignMode)
{
// Test for ScriptManager and register if it exists
sm = ScriptManager.GetCurrent(Page);
if (sm == null)
throw new HttpException("A ScriptManager control must exist on the current page.");
sm.RegisterScriptControl(this);
sm.EnablePageMethods = true;
}
base.OnPreRender(e);
}
protected override void OnLoad(EventArgs e)
{
Literal lit = new Literal();
lit.Text = "<span ID=\"Literal1\" runat=\"server\">test</span><input id=\"Button1\" type=\"button\" value=\"button\" onclick=\"UpdateTime();\" />";
this.Controls.Add(lit);
}
protected override void Render(HtmlTextWriter writer)
{
if (!this.DesignMode)
sm.RegisterScriptDescriptors(this);
base.Render(writer);
}
[WebMethod]
public static string GetCurrentDate()
{
return DateTime.Now.ToString();
}
#region IScriptControl Members
IEnumerable<ScriptDescriptor> IScriptControl.GetScriptDescriptors()
{
return null;
}
IEnumerable<ScriptReference> IScriptControl.GetScriptReferences()
{
ScriptReference reference = new ScriptReference();
reference.Path = ResolveClientUrl("~/tests/JScript.js");
return new ScriptReference[] { reference };
}
#endregion
}
}
</code></pre>
<p>Now, in my sample page, when I click the button, I get this error:
<strong>PageMethods is not defined
[Break on this error] PageMethods.GetCurrentDate(OnSucceeded, OnFailed);</strong> </p>
<p>How do I call GetCurrentDate from the clientscript that my control registers?</p>
http://stackoverflow.com/questions/1307767/lambda-query-to-reverse-order-a-list-by-date/1307781#1307781Comment by NetHawk on Lambda query to reverse order a list by dateNetHawk2009-08-20T17:54:53Z2009-08-20T17:54:53ZThanks, for the answer. You are both right, but Noldorin was first.
Thanks for the code, but the reason that I used the intermediate collection was because I got an error saying my data source must implement ICollection or can perform data source paging if AllowPaging is true.http://stackoverflow.com/questions/1032736/is-there-any-open-forum-software-that-uses-the-asp-net-membership-providerComment by NetHawk on Is there any Open Forum software that uses the ASP.NET membership ProviderNetHawk2009-06-26T12:40:00Z2009-06-26T12:40:00ZRequests for info and suggestions on a component for programming is aren't usually tagged not-programming-related
<a href="http://stackoverflow.com/questions/885186/image-library-software" rel="nofollow" title="image library software">stackoverflow.com/questions/885186/…</a>
<a href="http://stackoverflow.com/questions/953714/face-recognition-library" rel="nofollow" title="face recognition library">stackoverflow.com/questions/953714/…</a>
<a href="http://stackoverflow.com/questions/342614/is-there-an-open-source-asp-net-membership-administration-gui-like-netwebadmin" rel="nofollow" title="is there an open source asp net membership administration gui like netwebadmin">stackoverflow.com/questions/342614/…</a>
<a href="http://stackoverflow.com/questions/241575/framework-cms-suggestions-for-enterprise-website-intranet-ive-got-to-convince" rel="nofollow" title="framework cms suggestions for enterprise website intranet ive got to convince">stackoverflow.com/questions/241575/…</a>
<a href="http://stackoverflow.com/questions/242606/my-ideal-cms-does-it-exist-or-isnt-it-a-cms-anymore" rel="nofollow" title="my ideal cms does it exist or isnt it a cms anymore">stackoverflow.com/questions/242606/…</a>
http://stackoverflow.com/questions/992286/greedy-algorithm-for-the-knapsack-problemComment by NetHawk on greedy algorithm for the knapsack problemNetHawk2009-06-18T20:23:36Z2009-06-18T20:23:36ZRated down because this question doesn't' seem well thought out or helpful to others because it is so specific. http://stackoverflow.com/questions/772337/jargon-expressions-you-use-among-programmers-in-non-work-context/772395#772395Comment by NetHawk on Jargon: expressions you use among programmers in non-work context?NetHawk2009-06-18T20:09:43Z2009-06-18T20:09:43ZAlso: iterate and increment are two common programmer words that you might use in a regular sentence most people don't seem to understand.http://stackoverflow.com/questions/1014858/is-writing-specifications-for-hobby-projects-the-only-way-for-them-to-be-finishedComment by NetHawk on Is writing specifications for hobby projects the only way for them to be finished?NetHawk2009-06-18T20:01:18Z2009-06-18T20:01:18ZI hope this doesn't get closed, I am interested in this too.http://stackoverflow.com/questions/659685/session-and-app-pool-an-asp-net-app-that-stores-and-displays-imagesComment by NetHawk on Session and app pool: an ASP.NET app that stores and displays imagesNetHawk2009-06-16T12:31:26Z2009-06-16T12:31:26ZSorry for the late reply. I mean using the Solution Explorer interface.http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/997125#997125Comment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T17:43:05Z2009-06-15T17:43:05ZThanks, Rob. I'm voting this up as a good counterpoint and defiantly useful.
This does seem like good process, and our whole system here is really ad-hoc. You are correct that we use SS here, and I would love to use something better. http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996731#996731Comment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:51:01Z2009-06-15T15:51:01ZI am not sure that is either of those statements is entirely true. http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996760#996760Comment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:37:46Z2009-06-15T15:37:46ZThanks, Steve. Is every page compiled separately? It seems like the performance hit is all on the first request.http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996726#996726Comment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:32:39Z2009-06-15T15:32:39ZThe apps aren't very large, really just a few pages and assemblies. I've tried to access some on the server that weren't precompiled and just deployed. The time it takes to access those ones was noticeable (I was looking for it), but not that bad. Most of them also don't see a lot of access. http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-not/996731#996731Comment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:29:48Z2009-06-15T15:29:48ZActually, Ishtar, It is almost trivial to decompile a .NET assembly with Reflector. Since the webserver doesn't serve files that should be protected in ASP.NET, like .cs files and your web config, is that really a big advantage?
I agree that performance is the most popular concern. Thanks for your answer.http://stackoverflow.com/questions/996712/should-i-precompile-asp-net-2-0-sites-before-deployment-or-notComment by NetHawk on Should I precompile ASP.NET 2.0 sites before deployment or not?NetHawk2009-06-15T15:27:20Z2009-06-15T15:27:20ZAgreed, but I'm trying to make improvements where I can. Having bigger organizational problems that I can't solve is no reason not to bother with things I can influence at my level.http://stackoverflow.com/questions/976635/what-exactly-is-a-software-architectComment by NetHawk on What exactly is a "Software Architect"?NetHawk2009-06-10T17:49:35Z2009-06-10T17:49:35ZIt is illegal in Canada to call yourself a Professional Engineer without being licensed. Calling yourself a Software Engineer happens, but it is a disputed issue.http://stackoverflow.com/questions/976529/not-taking-mpc-in-college-what-do-you-think/976925#976925Comment by NetHawk on Not taking MPC in college, what do you think?NetHawk2009-06-10T17:16:29Z2009-06-10T17:16:29ZBalance is a great goal. Perhaps, since the OP is considering not taking 'hard' classes like Math and Sciences, he or she is already more inclined towards not being a hardcore geek. http://stackoverflow.com/questions/342614/is-there-an-open-source-asp-net-membership-administration-gui-like-netwebadmin/589972#589972Comment by NetHawk on Is there an open source Asp.net membership administration GUI (like netwebadmin, but works online)?NetHawk2009-05-22T13:05:44Z2009-05-22T13:05:44ZThat is a shame. I looked into it and apparently the project was abandoned.
Here is a thread about it for anyone who is interested.
<a href="http://forums.asp.net/p/1390061/2969499.aspx" rel="nofollow">forums.asp.net/p/1390061/2969499.aspx</a>