User TheAlbear - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:32:37Z http://stackoverflow.com/feeds/user/27922 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1544036/why-are-my-aspx-pages-not-being-compressed-with-gzip-enabled/1689596#1689596 0 Answer by TheAlbear for Why are my ASPX pages not being compressed with Gzip enabled? TheAlbear 2009-11-06T18:59:38Z 2009-11-06T18:59:38Z <p>You will need to go and edit the IIS Metabase file. If you dont want to resrart IIS / the server once you have done it click alolow live metabase edits in IIS</p> <p>From the MS article you can get some patch results. </p> <p>Easier post to follow (From Mr Atwood), basicly just cut and paste over the current values. <a href="http://www.codinghorror.com/blog/archives/000059.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000059.html</a></p> http://stackoverflow.com/questions/1625207/iiswpg-and-iisiusrs-member-of-authenticated-users-group/1689558#1689558 0 Answer by TheAlbear for IIS_WPG (and IIS_IUSRS) member of "Authenticated Users" group? TheAlbear 2009-11-06T18:54:13Z 2009-11-06T18:54:13Z <p>The IIS_WPG user is a the IIS Worker Process Group, and is needed in order for IIS to run / access applciations within a folder</p> <p>The IIS_IUSRS is a the Internet Guest Account, this is used to allow anonynous access to the folder / files. This is needed if you want the general public to be able to view anything in the folders e.g. a website. </p> <p>They are not norally part of the "Authenticated Users" group and normally require you to grant access seperatly.</p> http://stackoverflow.com/questions/1664749/iis-6-error-message/1689511#1689511 0 Answer by TheAlbear for IIS 6 Error Message TheAlbear 2009-11-06T18:45:10Z 2009-11-06T18:45:10Z <p>This is an application error caused by what ever is running in the "myApp" folder. </p> <p>Take a look at whats in there and then come back. </p> http://stackoverflow.com/questions/1642906/how-to-set-visual-studio-to-publish-pdf-files 3 How to set Visual Studio to Publish pdf files TheAlbear 2009-10-29T10:53:58Z 2009-10-31T06:33:40Z <p>Is there a way to set visual studio to publish all pdf files?</p> <p>I know that you can set each indivdual pdf file in a project with the "Copy to Outpub Directory" property.</p> <p>But that means doing the same thing 100's of times for my current project, is there a way to change a global setting to do the same thing?</p> http://stackoverflow.com/questions/541135/dropdownlist-from-object 1 DropDownList from object TheAlbear 2009-02-12T13:00:40Z 2009-10-18T04:37:45Z <p>How do you bind a DropDownlist DataText or DataValue field from a object. When the object in question is at a second level, e.g. the object to bind is not in the first level of the returned object Users.ContactDetails.Telephone, as the code below doesn't work: </p> <pre><code>ddl.DataSource = dal.dal_Users.GetAllUsers(); ddl.DataTextField = "Telephone"; </code></pre> <p>I have tried a range of ideas but can't seem to find any information on if this can be done or not.</p> http://stackoverflow.com/questions/1501514/how-to-detect-if-a-visitor-is-human-and-not-a-spider/1503691#1503691 1 Answer by TheAlbear for How to detect if a visitor is human and not a spider TheAlbear 2009-10-01T12:33:24Z 2009-10-01T12:33:24Z <p>If you are going down the Captcha route you could always use invisable Captcha. </p> <p>Basicly create a input control with a label saying what is 5+2 and then using javascript solve this and enter the value in your text box then hide the text field. Almost all spiders cant run Javascript, any normal user they wont even know that is happening, and any user with out Javascript just sees the field to fill in. </p> <p>Google analytics also works on JS so you could just use that?</p> http://stackoverflow.com/questions/1301508/change-textboxs-css-class-when-asp-net-validation-fails/1306044#1306044 0 Answer by TheAlbear for Change textbox's css class when ASP.NET Validation fails TheAlbear 2009-08-20T13:00:09Z 2009-08-20T13:00:09Z <p>Well if youir doing with the required field validators this will work if you want it to fire in the code behind. </p> <pre><code>if (!Page.IsValid) { txb = SetErrorCss(txbFirstName, rfvName); } private static TextBox SetErrorCss(TextBox txtBox, RequiredFieldValidator rfv) { if (!rfv.IsValid) { txtBox.CssClass = "error"; } return txtBox; } </code></pre> http://stackoverflow.com/questions/987871/how-to-seo-friendly-an-existing-asp-net-3-5-web-application-under-iis6/1267169#1267169 0 Answer by TheAlbear for How to SEO friendly an existing ASP .NET 3.5 web application under IIS6 TheAlbear 2009-08-12T16:11:48Z 2009-08-12T16:11:48Z <p>Easiest way is to add a http module to your current webforms project. </p> <p><a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx</a></p> <p>This shows you the basics of it, But it can easily be expanded so that the pages you want to rewite is taken from a database or even built on the fly. </p> http://stackoverflow.com/questions/1261144/make-iis-not-render-pages-as-wml-ever/1266989#1266989 0 Answer by TheAlbear for Make iis not render pages as wml. ever! TheAlbear 2009-08-12T15:38:22Z 2009-08-12T15:38:22Z <p>This sounds like its more to do with your admin system that the IIS box as the admin site is seeing the useragent as a mobile device and changing how it renders your request, from standard html over to .wml yuo will need to change this in the app I belive. </p> http://stackoverflow.com/questions/1266406/what-is-the-fastest-way-to-inject-some-logging-on-a-live-web-application/1266829#1266829 1 Answer by TheAlbear for What is the fastest way to inject some logging on a live web application? TheAlbear 2009-08-12T15:13:22Z 2009-08-12T15:13:22Z <p>You can always turn on local only debugging and then remote on to the server and use the app. </p> <p>Might be the fastest way to see your problem. </p> http://stackoverflow.com/questions/701097/how-to-force-a-20-minute-time-out-for-sessions/853058#853058 0 Answer by TheAlbear for How to force a 20 minute time-out for sessions? TheAlbear 2009-05-12T14:24:16Z 2009-05-12T14:24:16Z <p>If the sesson it not taking its value from the web.congig you can also set the sasson timeouw within IIS </p> <p>webste properties > Home Directory > Configuration > Options </p> <p>Make sure enable sesson state is selected and then set the time out in mins. </p> http://stackoverflow.com/questions/803510/can-you-change-the-order-in-which-iis6-virtual-directories-appear/853022#853022 0 Answer by TheAlbear for Can you change the order in which IIS6 virtual directories appear? TheAlbear 2009-05-12T14:18:32Z 2009-05-12T14:18:32Z <p>The IIS Manager shows the sites in teh order they where entered... </p> <p>The only way i have found is to click on the websites folder then reorder by discription / host header in the main window to get them in alphabetical order. </p> http://stackoverflow.com/questions/847406/does-asp-net-setting-affect-classic-asp-iis-6-settings/852980#852980 1 Answer by TheAlbear for Does asp.net setting affect classic asp (IIS 6 settings) TheAlbear 2009-05-12T14:08:55Z 2009-05-12T14:08:55Z <p>Running a classic site along site a .Net site in the same app pool should be fine and you shouldnt see any down time in the IIS when you upload a new version to the server. </p> <p>You will find the server pause for a few seconds if you change the config of any app pool or if you change over the .Net version that is running in a site, all sites running in that app pool will be reset as the app pool resets. </p> <p>My recomendation would be to create 2 App pools one for your new .Net 2.0 sites and one for the old classic sites, this will also help out if you are undergoing development as although unlikely it is possable to write code to complete crash the app pool. </p> <p>The only thing to remembger is that each app pool as a small memory overhead about 3-5MB so if you nmake an app pool for each site and host a large number of site you can very quickly run out of RAM. </p> http://stackoverflow.com/questions/257801/is-there-a-way-to-use-thickbox-with-dynamic-content/681151#681151 0 Answer by TheAlbear for Is there a way to use Thickbox with dynamic content? TheAlbear 2009-03-25T11:20:29Z 2009-03-25T11:20:29Z <p>In the codebehind you could also just add the alt tag progamaticly. </p> <pre><code>button1.Attributes.Add("alt", "Search.aspx?KeepThis=true&amp;TB_iframe=true&amp;height=500&amp;width=700"); </code></pre> http://stackoverflow.com/questions/504464/how-to-show-a-lightbox-dialog-from-an-asp-net-ajax-response/681136#681136 0 Answer by TheAlbear for How to show a Lightbox dialog from an ASP.NET AJAX response. TheAlbear 2009-03-25T11:15:46Z 2009-03-25T11:15:46Z <p>I have has the problem that using lightbox in conjection with the jQuery library can cause some issues, where lightbox just wont load properly due to a conflict somewhere. </p> <p>The way round this I have found is to use a jQuery version of lightbox. <a href="http://plugins.jquery.com/project/jquerylightbox%5Fbal" rel="nofollow">http://plugins.jquery.com/project/jquerylightbox_bal</a>. </p> http://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv/659151#659151 0 Answer by TheAlbear for How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server website TheAlbear 2009-03-18T16:55:52Z 2009-03-18T16:55:52Z <p>Any error which make you application fall over will be caught and shown in the event log. </p> <p>For making sure the site is still up and running i would recomend a remote monitoring something like <a href="http://site24x7.com" rel="nofollow">http://site24x7.com</a> which can send you a email / text alert if there is a problem.</p> http://stackoverflow.com/questions/643734/iis-hang-troubleshooting/659100#659100 0 Answer by TheAlbear for IIS Hang Troubleshooting TheAlbear 2009-03-18T16:44:01Z 2009-03-18T16:44:01Z <p>make sure IIS is set to be able to recycle its process automaticly, might help to fix the issue if it is a memory leak. (well ok cope with the problem not fix)</p> <p>My advice is to give you app its own application pool, so you are 100% sure that its the appication you think pulling the server down, what dose the application log say when this happens?</p> <p>From the information you have given it sounds like its a memory leak or open db connection / thread issue. </p> <p>P.s If you are using N2 there was a known issue that when IIS recycled it wouldnt come back up.</p> http://stackoverflow.com/questions/658622/true-not-pseudo-random-number-generators-whats-out-there/658974#658974 1 Answer by TheAlbear for True (not pseudo) random number generators. What's out there? TheAlbear 2009-03-18T16:17:26Z 2009-03-18T16:17:26Z <p>As ramdom number generators go I have always liked the one made from <a href="http://www.gamesbyemail.com/dicegenerator" rel="nofollow">lego</a>....</p> http://stackoverflow.com/questions/655141/free-c-xml-diff-library-or-class/658822#658822 1 Answer by TheAlbear for Free C# XML Diff library or class TheAlbear 2009-03-18T15:39:13Z 2009-03-18T15:39:13Z <p>Not quite sure from you post if you are tring to do this in code or not. </p> <p>But if you are just after a nice programe to view the two documents side by side and see the difreances and make changes to them i would recomend <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare 3</a>. </p> http://stackoverflow.com/questions/541135/dropdownlist-from-object/541459#541459 0 Answer by TheAlbear for DropDownList from object TheAlbear 2009-02-12T14:24:32Z 2009-02-12T14:24:32Z <p>The only way i can see that this could be done in .Net 2.0 would be something like this </p> <pre><code> List&lt;Users&gt; userList = dal_Users.GetAllUsers(); foreach (Users u in userList ) { ListItem li = new ListItem(); li.Text = u.ContactDetails.Telephone; li.Value = u.userID.ToString(); ddl.Items.Add(li); } ddl.DataBind(); </code></pre> http://stackoverflow.com/questions/469417/best-way-to-parse-datetime-to-sql-server 0 Best way to parse DateTime to SQL server TheAlbear 2009-01-22T14:55:18Z 2009-01-22T15:26:46Z <p>I was wondering what is the best way to parse a DateTime object to your SQL server. </p> <p>Where you are generating the SQL in code. </p> <p>I have always used something like <code>DateTime.Now.TolongDateString()</code> and had good results, apart from today where i got a error, and it made me think. </p> <pre><code>System.Data.SqlClient.SqlException: Conversion failed when converting datetime from character string </code></pre> <p>So what is everyone thoughts and recomendations for a way that will work acrss all SQL server no matter what there setup.. </p> <p>Maybe something like <code>DateTime.Now.ToString("yyyy/MM/dd")</code> </p> http://stackoverflow.com/questions/342822/iis-log-files-showing-rewritten-rather-than-original-url/344217#344217 0 Answer by TheAlbear for IIS Log Files showing Rewritten rather than Original Url TheAlbear 2008-12-05T15:40:46Z 2008-12-05T15:40:46Z <p>As far as i am aware this will be by design as IIS only ever recives the rewritten URL not the orignal, as the rewritten url is sent to the .Net appliction and its the appliction that dose the converting. </p> http://stackoverflow.com/questions/302775/call-a-webpage-from-c-in-code 3 Call a webpage from c# in code TheAlbear 2008-11-19T17:54:14Z 2008-11-19T19:23:03Z <p>I need a way of calling a web page from inside my .net appliction. </p> <p>But i just want to send a request to the page and not worry about the response. </p> <p>As there are times when the response can take a while so i dont want it to hang the appliction. </p> <p>I have been trying in side the page_load event</p> <pre><code>WebClient webC = new WebClient(); Uri newUri = new Uri("http://localhost:49268/dosomething.aspx"); webC.UploadStringAsync(newUri, string.Empty); </code></pre> <p>Even though its set to Async, it still seams to hang as the page wont finish remdering until the threads have finsished</p> http://stackoverflow.com/questions/302775/call-a-webpage-from-c-in-code/303036#303036 0 Answer by TheAlbear for Call a webpage from c# in code TheAlbear 2008-11-19T19:23:03Z 2008-11-19T19:23:03Z <p>Doak, Was almost there, but each time I put any of the request in a sepreate thread the page still wouldn't render until all the treads had finished running.</p> <p>The best way i found was adjusting Doak's method, and just sticking a timeout in there and swallowing the error. </p> <p>I know its a hack but it does work :P</p> <pre><code>WebRequest wr = WebRequest.Create("http://localhost:49268/dostuff.aspx"); wr.Timeout = 1000; try { HttpWebResponse response = (HttpWebResponse)wr.GetResponse(); } catch (Exception ex) { //We know its going to fail but that dosent matter!! } </code></pre> http://stackoverflow.com/questions/5833/looking-for-wysiwyg-html-editor/253516#253516 0 Answer by TheAlbear for Looking for WYSIWYG HTML editor TheAlbear 2008-10-31T13:46:28Z 2008-11-19T17:59:20Z <p>I really like the ditor used in this web site <a href="http://wmd-editor.com/" rel="nofollow">wmd-editor</a> its free and take only a few minutes to setup</p> <p>I have recently found a range of editors all open source and going from full html down to markdown </p> <p><a href="http://markitup.jaysalvat.com/home/" rel="nofollow">Mark it up</a></p> http://stackoverflow.com/questions/50335/ok-cancel-or-cancel-ok/225579#225579 0 Answer by TheAlbear for OK-Cancel or Cancel-OK? TheAlbear 2008-10-22T12:42:38Z 2008-10-22T12:42:38Z <p>I am not sure there is a write answer to this but i agree that what really matters is that what ever you pick you must then be consitant across your application. </p> http://stackoverflow.com/questions/206743/is-there-any-way-i-can-get-net-stack-traces-in-sql-profiler-or-a-similar-tool/225549#225549 1 Answer by TheAlbear for Is there any way I can get .net stack traces in Sql Profiler, or a similar tool? TheAlbear 2008-10-22T12:32:09Z 2008-10-22T12:32:09Z <p>I am not sure if it will do excatly what you need but the best profiling tool i have found for .Net is <a href="http://www.red-gate.com/Products/ants_profiler/index.htm" rel="nofollow">ANTS Profiler</a>, If i remember it will show you the SQL and also all the .net calls.</p> http://stackoverflow.com/questions/104620/any-good-sql-anywhere-database-schema-comparison-tools/202072#202072 0 Answer by TheAlbear for Any good SQL Anywhere database schema comparison tools? TheAlbear 2008-10-14T17:26:00Z 2008-10-14T17:26:00Z <p>I use <a href="http://www.red-gate.com/products/SQL_Data_Compare/index.htm" rel="nofollow">SQL Data Compare</a> from Red Gate along with <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" rel="nofollow">SQL Compare</a> the data compare allows you to Compare the contents of two databases and Automatically synchronize your data. SQL compare allows you to do the same but with the database tables. Nice GUI on each and very easy setup. they also work on a remote database. </p> <p>There not cheap but each has a 30 trail so you can get a feel if you like it or not. </p> http://stackoverflow.com/questions/201401/asp-net-masterpages-and-viewstate/202042#202042 1 Answer by TheAlbear for ASP.NET Masterpages and viewstate TheAlbear 2008-10-14T17:16:31Z 2008-10-14T17:16:31Z <p>Just a qick not on teh side before optimising the site, have you optimised the server by making sure all the files are gzipped before being sent.</p> <p>if not this will get you a nice boost before you even start tinkering with the page. </p> <p><a href="http://www.codinghorror.com/blog/archives/000059.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000059.html</a></p> http://stackoverflow.com/questions/201837/do-you-put-copyright-notices-in-your-proprietary-code/202016#202016 0 Answer by TheAlbear for Do you put copyright notices in your (proprietary) code? TheAlbear 2008-10-14T17:08:39Z 2008-10-14T17:08:39Z <p>It would depend completely on how the code was to be distributed, and how you plan to release your code base. </p> <p>For stuff which is freely accessible to the public e.g. JavaScript files, css even if they are obfuscated I would say that yes you need to have a notice there if you don’t want people to use it. Although that is not always going to work, even though the copyright is implicit it is easy for people to plead ignorance. </p> <p>For code which you give to the client for hosting on their systems (compiled or not) we tend to give them a software licence agreement with the code and make them sign it instead of adding lines to each page, as i find every page having 10+lines for legal jargon at the top of my code page ruins its natural beauty! :P</p> http://stackoverflow.com/questions/1625207/iiswpg-and-iisiusrs-member-of-authenticated-users-group/1689558#1689558 Comment by TheAlbear on IIS_WPG (and IIS_IUSRS) member of "Authenticated Users" group? TheAlbear 2009-11-06T18:54:34Z 2009-11-06T18:54:34Z Oh IIS 6 only not sure about IIS 7 http://stackoverflow.com/questions/1642906/how-to-set-visual-studio-to-publish-pdf-files/1653615#1653615 Comment by TheAlbear on How to set Visual Studio to Publish pdf files TheAlbear 2009-11-03T12:33:52Z 2009-11-03T12:33:52Z Looks like this is the best option. http://stackoverflow.com/questions/1642906/how-to-set-visual-studio-to-publish-pdf-files Comment by TheAlbear on How to set Visual Studio to Publish pdf files TheAlbear 2009-10-29T11:44:27Z 2009-10-29T11:44:27Z Still menas clicking on each file, i was hopig there was a global setting for all projects that i could set and then forget about. http://stackoverflow.com/questions/1642906/how-to-set-visual-studio-to-publish-pdf-files Comment by TheAlbear on How to set Visual Studio to Publish pdf files TheAlbear 2009-10-29T11:02:33Z 2009-10-29T11:02:33Z The web servers not really the issues, the problem is getting pdf fiels whicvh are used and manuals / documents / downloads are added to the project, but you need to set each one so that when you publish there are transfered to the server. once there its all fine. http://stackoverflow.com/questions/469417/best-way-to-parse-datetime-to-sql-server Comment by TheAlbear on Best way to parse DateTime to SQL server TheAlbear 2009-10-16T15:28:49Z 2009-10-16T15:28:49Z I have now been using .ToString(&quot;yyyy-MM-dd HH:mm:ss:fff&quot;) which seams to work just fine http://stackoverflow.com/questions/987871/how-to-seo-friendly-an-existing-asp-net-3-5-web-application-under-iis6/1267169#1267169 Comment by TheAlbear on How to SEO friendly an existing ASP .NET 3.5 web application under IIS6 TheAlbear 2009-08-20T12:50:47Z 2009-08-20T12:50:47Z Yes with the rewritter as I use it the old url will still work and display the page. But if you have back links, you will want to add something to check the 'old' URL's and then redirect then to the new SEo friendly, or you run the chance that the google spirders will find the same page content on two diffrent URL's which is very bad. http://stackoverflow.com/questions/825400/is-it-possible-for-iis-6-to-serve-unprocessed-asp-aspx-pages/825426#825426 Comment by TheAlbear on Is it possible for IIS 6 to serve unprocessed ASP/ASPX pages? TheAlbear 2009-05-12T14:10:59Z 2009-05-12T14:10:59Z You could remove the mapping of the file extention in IIS, without removing the files from the server. But why you would want to do this is not clear.. http://stackoverflow.com/questions/106509/disable-button-on-form-submission/106958#106958 Comment by TheAlbear on Disable button on form submission TheAlbear 2009-03-18T16:02:57Z 2009-03-18T16:02:57Z Great bit of code been looking for somthing like this for a while http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/507309#507309 Comment by TheAlbear on Should we select VB.NET or C# when upgrading our legacy apps? TheAlbear 2009-02-03T18:35:58Z 2009-02-03T18:35:58Z As a programemr who started out with VB and classic ASP, i found moving to VB.Net harder as the there are too similer in my mind. Moving backwards and forwards on classic ASP project and VB.Net projects gave me a headahce so i went for c# http://stackoverflow.com/questions/302775/call-a-webpage-from-c-in-code/302808#302808 Comment by TheAlbear on Call a webpage from c# in code TheAlbear 2008-11-19T18:08:17Z 2008-11-19T18:08:17Z I agree it should work but the web page wont render back to the broswer until the threads have finished, so it still hangs