User pzycoman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T02:03:44Zhttp://stackoverflow.com/feeds/user/1276http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831890/virtual-directory-deleted-when-publishing-asp-net-application/1831898#18318981Answer by pzycoman for Virtual directory deleted when publishing asp.net application?pzycoman2009-12-02T10:05:11Z2009-12-02T10:05:11Z<p>Try publishing the website to the directory, as opposed to the website? I.e. publish to c:\Websites\WebsiteRoot (or whatever the path is), as opposed to <a href="http://www.sitename.com/" rel="nofollow">http://www.sitename.com/</a></p>
<p>Or you could try using the "Replace files" instead of deleting all preexisting files ?</p>
http://stackoverflow.com/questions/1791961/how-do-you-reset-form-values-in-asp-net-mvc0How do you reset form values in asp.net mvc?pzycoman2009-11-24T18:23:05Z2009-11-24T20:54:31Z
<p>Due to crazyness in this project (Too long a story to get in right now), we need to keep the data in the Model of the form, but not display it on the form on successfull postback, where the form postback was succesfull - </p>
<pre><code><%= Html.TextBox("FullName", "", new { @class = "required", title = "Full Name is required" })%>
</code></pre>
<p>Dosent seem to do the trick - and I cant reset the model in the controller, because on post back we want a message (that appears on the same page) that pretty much says something like "Thankyou for your query regarding XYZ (which is what they entered in one of the text boxes)"</p>
<p>I hope that makes sense.</p>
http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1566562#15665623Answer by pzycoman for Most horrifying line of code you have ever seen?pzycoman2009-10-14T14:18:07Z2009-10-14T14:18:07Z<pre><code>// KEKEKE IM DRUNK!!
</code></pre>
<p><em>shudder</em></p>
http://stackoverflow.com/questions/263273/what-is-the-most-poorly-named-application-out-there/1212103#12121031Answer by pzycoman for What is the most poorly named application out there?pzycoman2009-07-31T11:47:27Z2009-07-31T11:47:27Z<p>A credit card processing company in the UK is called </p>
<p>CommIdea</p>
<p>say it out quickly, and sounds like chlymdia, always interesting in meetings.</p>
http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/1198641#11986410Answer by pzycoman for Where do you keep your code?pzycoman2009-07-29T07:51:16Z2009-07-29T07:51:16Z<p>C:\Work\ - for main project work (and then into SVN)</p>
<p>c:\Work\EXTERNALS - for opensource stuff downloaded from SVN repo's that I dont have write access to</p>
<p>Always been a habit from work to store stuff in a Work folder in the C drive, that way everyone knows exactly where it gets stored and what its about.</p>
http://stackoverflow.com/questions/327973/how-old-are-you-and-how-old-were-you-when-you-started-coding/1170623#11706230Answer by pzycoman for How old are you, and how old were you when you started coding?pzycoman2009-07-23T09:26:08Z2009-07-23T09:26:08Z<p>6, with prolog and basic (then visual basic) at the same time (Do bear in mind, im 25)</p>
http://stackoverflow.com/questions/1158063/visual-studio-2003-vs-visual-studio-2005/1158089#11580892Answer by pzycoman for Visual Studio 2003 vs. Visual Studio 2005pzycoman2009-07-21T09:09:34Z2009-07-21T09:19:53Z<p>When I developed with vs.net 03, I pointed the IIS site to the same directory to where I had pulled it out of source control, so I dont have to bother copying it over whenever I do any changes, and that seemed to work perfectly well</p>
<p>When publishing the site, you want to copy all the files over, bar the following extensions:</p>
<pre><code>.cs
.resx
.csproj
.projdata
.sln
.csproj.user
.suo
.scc
.load
.vssscc
.vspscc
</code></pre>
<p>Dont forget to copy over the bin directory!</p>
http://stackoverflow.com/questions/1142775/error-the-request-failed-with-http-status-404-not-found-when-open-sql-report/1142782#11427820Answer by pzycoman for Error : The request failed with HTTP status 404: Not Found. when open sql reportpzycoman2009-07-17T11:47:48Z2009-07-17T11:47:48Z<p>Do you have reporting services set up with the correct website and directory, and are you looking at that directory / website ?</p>
http://stackoverflow.com/questions/1096595/how-to-get-rid-of-b9g-ru-iframe-injected-on-to-a-website/1136378#11363780Answer by pzycoman for how to get rid of b9g.ru iframe injected on to a website pzycoman2009-07-16T09:18:34Z2009-07-16T09:18:34Z<p>If its wordpress, try having a look in the comments, and try disabling all of your plugins, and check the content they add one by one to see what its doing. Other things you can check after that is to try switching the template to one freshly downloaded from the WP site.</p>
http://stackoverflow.com/questions/1108364/why-do-some-people-turn-their-asp-net-pages-into-html-pages-when-published/1108387#11083872Answer by pzycoman for Why do some people turn their asp.net pages into HTML pages when published?pzycoman2009-07-10T08:29:25Z2009-07-10T08:29:25Z<p>I was a contractor on a large motoring site, and we were asked to not dislpay any file extensions at all, because the company (a very very large news agency) didnt want to appear to pick one technology above another to its investors and suppliers - it was purely a business desicsion, not a techincal or a security by obscurity attempt.</p>
http://stackoverflow.com/questions/978021/would-a-good-stack-overflow-reputation-be-a-good-job-reference/978035#9780350Answer by pzycoman for Would a good Stack Overflow reputation be a good job reference?pzycoman2009-06-10T20:42:21Z2009-06-10T20:42:21Z<p>I personally wouldn't consider the reputation itself to be of any good, but I <em>might</em> take a look into your posts to see the stuff about how you answer etc...</p>
<p>But thats just me!</p>
http://stackoverflow.com/questions/466921/in-c-what-is-the-generally-accepted-way-to-refer-to-member-properties-within-th/962796#9627960Answer by pzycoman for In C#, what is the generally accepted way to refer to member properties within the class?pzycoman2009-06-07T20:54:15Z2009-06-07T20:54:15Z<p>The <a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">framework Design guidelines book</a> says that you shouldn't prefix your variables with _ - you should just use a lower case for the name of the variable, and Code Complete 2nd edition I believe says you shouldn't prefix your variables with m_.</p>
http://stackoverflow.com/questions/947057/is-there-a-way-to-use-aspx-pages-as-templates-for-emails-being-sent-from-a-winfo/953916#9539160Answer by pzycoman for Is there a way to use .aspx pages as templates for emails being sent from a winform application?pzycoman2009-06-05T01:43:08Z2009-06-05T01:43:08Z<p>A quick and dirty way to do it is to do a HttpWebRequest to the url and grab the output and use that, but thats not as nice as the anser from David...</p>
http://stackoverflow.com/questions/953779/application-design-daemon-w-webpage-frontend/953893#9538931Answer by pzycoman for Application Design - Daemon w/ WebPage FrontEndpzycoman2009-06-05T01:32:41Z2009-06-05T01:32:41Z<p>A solution we have done commercially in the past is basically the daemon writes to a log (typically DB), with a date/time stamp, about what its doing, and the web frontend just shows the latest X amount of entries from the log, with a little toggle to hide all of the "Looked in directory, no file found" messages, worked fairly well, we upgraded it later on with AJAX (Timer that reloaded every 20 seconds).</p>
http://stackoverflow.com/questions/533533/uses-for-onitemdatabound2Uses for OnItemDataBoundpzycoman2009-02-10T18:27:24Z2009-06-01T22:39:56Z
<p>What would you realistically use OnItemDataBound for on a Repeater ?</p>
http://stackoverflow.com/questions/594473/why-do-managers-care-about-time-you-start-work12Why do managers care about time you start work?pzycoman2009-02-27T12:03:41Z2009-04-22T15:43:06Z
<p>As it says on the tin - why do managers care what time I start work? I want to try to understand this, so I can accommodate them better.</p>
<p>As far as I am concerned, as long as the person does the job by the deadline, there is nothing to worry about.</p>
http://stackoverflow.com/questions/757806/get-the-exact-url-the-user-typed-into-the-browser/757999#7579990Answer by pzycoman for Get the exact url the user typed into the browser.pzycoman2009-04-16T20:51:12Z2009-04-16T20:51:12Z<pre><code>Request.RawUrl
</code></pre>
<p>I think is the monkey you are after...</p>
http://stackoverflow.com/questions/650189/best-way-to-read-contents-of-web-config1Best way to read contents of web.configpzycoman2009-03-16T12:24:35Z2009-03-16T12:44:24Z
<p>I need to read the contents of the Web.Config and send them off in an email, is there a better way to do the following:</p>
<pre><code> string webConfigContents = String.Empty;
using (FileStream steam = new FileStream(
Server.MapPath("~/web.config"),
FileMode.Open, FileAccess.Read, FileShare.Read))
{
using (StreamReader reader = new StreamReader(steam))
{
webConfigContents = reader.ReadToEnd();
}
}
</code></pre>
<p>I dont want to lock the file. Any ideas?</p>
<p><em>Edit - I need a raw dump of the file, I cant attach the file (Webhost says nay!), and im not looking for anything specific inside it</em></p>
http://stackoverflow.com/questions/640300/can-server-side-viewstates-fix-one-of-the-biggest-problems-with-asp-net/640366#6403660Answer by pzycoman for Can server-side viewstates fix one of the biggest problems with ASP.NET?pzycoman2009-03-12T20:33:22Z2009-03-12T20:33:22Z<p>To be honest, most of the time you can trim the viewstate right down - alot of developers, me included, dont go through all controls that dont need it and disable it - I tend to find that I only need viewstates for stuff like datagrids, most other controls tend to work fine, but as I said, I dont do it as often as I should.</p>
http://stackoverflow.com/questions/639166/different-ways-of-writing-the-if-statement/640361#6403610Answer by pzycoman for Different ways of writing the "if" statement...pzycoman2009-03-12T20:31:15Z2009-03-12T20:31:15Z<p>Version #2 for me - easiest to see, easiest to read, easy to see where the if starts and ends, same for else, you dont have to worry about putting in brackets if you want to add more than one statement.</p>
http://stackoverflow.com/questions/639109/what-technologies-and-tools-do-you-use-to-telecommute/639168#6391680Answer by pzycoman for What technologies and tools do you use to telecommute?pzycoman2009-03-12T15:28:00Z2009-03-12T15:28:00Z<p>We use MSN messenger for chat, good ole POTS for chatting and conf calls, VPN + RDP for remote access to boxes, and we use Exchange webmail to check our mail externally (if we havn't vpn/rdp'ed into our boxes)</p>
http://stackoverflow.com/questions/638496/what-is-fastest-int-convert-toint32x-or-int32-parsex/638507#6385075Answer by pzycoman for What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)?pzycoman2009-03-12T12:58:48Z2009-03-12T12:58:48Z<p>Best practice would be TryParse, and seeing the result of that, if it worked - otherwise you could get exceptions</p>
http://stackoverflow.com/questions/570083/best-practice-when-returning-an-array-of-values-net/570089#5700896Answer by pzycoman for Best practice when returning an array of values (.NET)pzycoman2009-02-20T15:51:40Z2009-02-20T15:51:40Z<p>IEnumerable / IEnumerable <T> unless you specifically need a list, then you should return IList <T></p>
http://stackoverflow.com/questions/299956/adding-an-itemcommand-to-a-compositedataboundcontrol/301723#3017230Answer by pzycoman for Adding an ItemCommand to a CompositeDataBoundControlpzycoman2008-11-19T12:18:25Z2008-11-19T13:05:05Z<p>Im using a custom "RepeaterItem" (eg. RecipeItem) - I cant seem to get the OnBubbleEvent (have overriden it and stole things from RepeaterItem) to fire in the item.</p>
<p>Nevermind, im an idiot. Commented out a DataBind();!</p>
http://stackoverflow.com/questions/299956/adding-an-itemcommand-to-a-compositedataboundcontrol1Adding an ItemCommand to a CompositeDataBoundControlpzycoman2008-11-18T20:08:20Z2008-11-19T13:05:05Z
<p>I have a CompositeDataBoundControl and im trying to add a ItemCommand to it, ala the System.Web.UI.WebControls.Repeater - so like a numpty, I just thought if I reflector'ed and added the code like so, it should work:</p>
<pre><code>private static readonly object EventItemCommand = new object();
protected override bool OnBubbleEvent(object sender, EventArgs e)
{
// throw new Exception();
bool flag = false;
if (e is RepeaterCommandEventArgs)
{
this.OnItemCommand((RepeaterCommandEventArgs)e);
flag = true;
}
return flag;
}
protected virtual void OnItemCommand(RepeaterCommandEventArgs e)
{
RepeaterCommandEventHandler handler = (RepeaterCommandEventHandler)base.Events[EventItemCommand];
if (handler != null)
{
handler(this, e);
}
}
public event RepeaterCommandEventHandler ItemCommand
{
add
{
base.Events.AddHandler(EventItemCommand, value);
}
remove
{
base.Events.RemoveHandler(EventItemCommand, value);
}
}
</code></pre>
<p>Unfortunatly, even though I have the event bound, it does not seem to fire. Iv tried to go down the route of IPostBackEventHandler, but its still not quite right (I can fire an empty event off with no args, but I cant see a decent way to call the OnItemCommand with the RepeaterCommandEventArgs</p>
<p>Any ideas how to get this to work? </p>
<p>Iv been sitting on the office for the last 4 hours trying to get this to work! Help!</p>
http://stackoverflow.com/questions/265875/default-string-initialization-null-or-empty/265893#2658932Answer by pzycoman for Default string initialization: NULL or Empty?pzycoman2008-11-05T17:12:42Z2008-11-05T17:12:42Z<p>I either set it to "" or null - I always check by using String.IsNullOrEmpty, so either is fine.</p>
<p>But the inner geek in me says I should set it to null before I have a proper value for it...</p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/258980#2589802Answer by pzycoman for What is the most important thing you weren't taught in school?pzycoman2008-11-03T15:24:47Z2008-11-03T15:24:47Z<p>The majority of people are idiots and liars</p>
http://stackoverflow.com/questions/222058/webformsavescrollpositionsubmit-is-not-defined/222080#2220800Answer by pzycoman for Webform_SaveScrollPositionSubmit is not definedpzycoman2008-10-21T14:28:11Z2008-10-21T14:28:11Z<p>Nevermind! It seems a custom HttpModule (that has a ResponseFilter) is doing some nasty things to the page. Going to rewrite the HttpModule as a HttpHandler and bind it to *.aspx so it doesnt interfere with WebResource.axd</p>
http://stackoverflow.com/questions/222058/webformsavescrollpositionsubmit-is-not-defined0Webform_SaveScrollPositionSubmit is not definedpzycoman2008-10-21T14:22:18Z2008-10-21T14:28:11Z
<p>Cut a short story even shorter, Have a asp.net page with MaintainScrollPositionOnPostback="true" in the page directive (And I tried setting the same to true in page_load), but I get the above javascript error (Webform_SaveScrollPositionSubmit is not defined) and im guessing the page dosent scroll because that js function is "not defined"...</p>
<p>Using asp.net 2.0 and firefox 3...dosent work in internut exploader too. Have tried running aspnet_regiis -c, but no joy...</p>
http://stackoverflow.com/questions/208234/how-to-show-hide-panels-before-executing-response-redirect/208390#2083901Answer by pzycoman for How to Show/Hide Panels before executing Response.Redirectpzycoman2008-10-16T12:43:15Z2008-10-16T12:43:15Z<p>Directly in asp.net you cant do this, but a way around is to either use JS (as is posted on here), or you can use an IFrame that loads the file to be downloaded - the user will see the thankyou, then the Open/save dialogue...</p>
http://stackoverflow.com/questions/241134/what-is-the-worst-c-net-gotcha/1499314#1499314Comment by pzycoman on What is the worst C#/.NET gotcha?pzycoman2009-12-03T16:26:10Z2009-12-03T16:26:10ZIv just spent a day and a half (and loads of hair!) chasing down this BUG...http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/130468#130468Comment by pzycoman on When did you know it was time to leave your job?pzycoman2009-10-15T06:31:40Z2009-10-15T06:31:40ZGet out of my mind!http://stackoverflow.com/questions/1552351/looking-for-free-agile-project-management-software/1552378#1552378Comment by pzycoman on Looking for Free Agile Project Management Softwarepzycoman2009-10-14T14:26:25Z2009-10-14T14:26:25ZI second redmine, we use it here in the office (Were a MS.net shop!), its really fast, integrates well, and actually looks very professional as opposed to many bug trackers which look rather poor...http://stackoverflow.com/questions/1136164/subsonic-3-0-medium-trust/1136188#1136188Comment by pzycoman on SubSonic 3.0 - Medium Trustpzycoman2009-09-25T14:36:58Z2009-09-25T14:36:58ZWhy the -1 ? Edited after I posted it!http://stackoverflow.com/questions/1360334/is-there-a-good-open-source-or-free-alternative-to-llblgen/1361470#1361470Comment by pzycoman on Is there a Good Open Source or Free Alternative to llblgenpzycoman2009-09-01T09:28:52Z2009-09-01T09:28:52ZWhy wouldnt you want a code generator?http://stackoverflow.com/questions/6988/how-can-i-explain-to-a-non-technical-person-what-i-do-for-a-living/7261#7261Comment by pzycoman on How can I explain to a non-technical person what I do for a living?pzycoman2009-07-10T09:52:39Z2009-07-10T09:52:39ZUpvote simply for the comment of "People in general are stupid." :Dhttp://stackoverflow.com/questions/1106331/what-does-n-years-of-experience-with-a-language-really-mean/1106357#1106357Comment by pzycoman on What does N years of experience with a language really mean?pzycoman2009-07-10T09:25:50Z2009-07-10T09:25:50ZJust like to comment - im mainly a c#.net monkey, but on my cv I have listed "Basic linux admin / LAMP understanding" (right at the bottom), because I have a very basic linux admin - I can figure things out, but im not 100% comfortable with doing linux stuff...http://stackoverflow.com/questions/901320/anti-joel-test/901535#901535Comment by pzycoman on Anti-Joel Testpzycoman2009-07-07T08:45:51Z2009-07-07T08:45:51ZIm currently contracting somewhere where I dont have admin on my machine, and can not run anything that networks hasnt approved, not even Reflector. I get around this by having my laptop on my desk, and using my own mobile internet.http://stackoverflow.com/questions/901320/anti-joel-test/901725#901725Comment by pzycoman on Anti-Joel Testpzycoman2009-06-08T12:12:22Z2009-06-08T12:12:22Z+1 - countless times iv been told off for turning up 30mins late, yet no one seems to care when I stay 6 hours late finishing stuff off...http://stackoverflow.com/questions/901320/anti-joel-test/915347#915347Comment by pzycoman on Anti-Joel Testpzycoman2009-06-08T12:06:20Z2009-06-08T12:06:20ZOne of the best places I worked at was an entirely male environment.http://stackoverflow.com/questions/901320/anti-joel-test/917210#917210Comment by pzycoman on Anti-Joel Testpzycoman2009-06-08T12:05:17Z2009-06-08T12:05:17Z+1 - We had to get a network admin to "sign off" on us restarting IIS on the internal test server, that only we used.http://stackoverflow.com/questions/948428/asp-net-http-400-bad-request-error-when-trying-to-process-http-localhost5957/951149#951149Comment by pzycoman on ASP.Net: HTTP 400 Bad Request error when trying to process http://localhost:5957/http://yahoo.compzycoman2009-06-05T01:40:05Z2009-06-05T01:40:05ZI second this notion - the ASP.NET Development server dosent really compare to IIS, its drastically cut down.http://stackoverflow.com/questions/953779/application-design-daemon-w-webpage-frontend/953893#953893Comment by pzycoman on Application Design - Daemon w/ WebPage FrontEndpzycoman2009-06-05T01:32:46Z2009-06-05T01:32:46ZI hope that made sense, its like 2:30am here, iv been up for 19 hours :)http://stackoverflow.com/questions/625708/where-to-put-comments-in-an-if-then-else-construct/625729#625729Comment by pzycoman on Where to put comments in an IF THEN ELSE constructpzycoman2009-04-17T00:45:00Z2009-04-17T00:45:00ZYou know those comments dont really do anything for readability, right?http://stackoverflow.com/questions/650189/best-way-to-read-contents-of-web-config/650204#650204Comment by pzycoman on Best way to read contents of web.configpzycoman2009-03-16T12:29:45Z2009-03-16T12:29:45ZHost wont alow us to send attachments :( Have already tried, their mail server kills it.