User Leyu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:46:23Z http://stackoverflow.com/feeds/user/3359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100471#100471 14 Answer by Leyu for Hidden Features of Visual Studio (2005-2008)? Leyu 2008-09-19T08:23:59Z 2009-12-07T12:21:39Z <p>Incremental search: While having a source document open hit (CTRL + I) and type the word you are searching for you can hit (CTRL + I) again to see words matching your input.</p> http://stackoverflow.com/questions/1631367/net-workflow-engine-suggestions-currently-considering-stateless 4 .NET Workflow Engine Suggestions ( currently considering stateless ) Leyu 2009-10-27T14:53:54Z 2009-11-17T15:51:36Z <p>I came across <a href="http://code.google.com/p/stateless/" rel="nofollow">stateless</a>, a hierarchical state machine framework based on <a href="http://codeplex.com/simplestatemachine" rel="nofollow">Simple State Machine</a> for <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a>, but configured using C# 3.0</p> <p>It is easy to configure and use, I will probably use it soon.</p> <p>But I was just wondering if</p> <ul> <li>Anyone used <a href="http://code.google.com/p/stateless/" rel="nofollow">stateless</a> for real projects (If so what is your opinion?)</li> <li>There are other good workflow engines for .NET (except WF)</li> </ul> http://stackoverflow.com/questions/1228146/nhibernate-querysyntaxexception/1749203#1749203 1 Answer by Leyu for NHibernate QuerySyntaxException Leyu 2009-11-17T14:20:15Z 2009-11-17T14:20:15Z <p>I was also following the <a href="http://www.summerofnhibernate.com/" rel="nofollow">Summer of NHibernate Screencast Series</a> and came across the same problem.</p> <p>The problem is in the HQL "<strong>select from User p</strong>" change that to "<strong>select p from User p</strong>" or just "<strong>from User p</strong>".</p> <p>Note that the NHibernate version used in the screencasts is <strong>1.2.1</strong>, I believe there are some changes regarding the way HQL is parsed in the later versions.</p> <pre><code>public IList&lt;Person&gt; GetPersonsByFirstName(string firstName) { ISession session = GetSession(); return session.CreateQuery("select p from Person p where p.FirstName=:fn") .SetString("fn", firstName) .List&lt;Person&gt;(); } </code></pre> http://stackoverflow.com/questions/233478/asp-net-2-0-application-on-iis-5-resulting-in-error-aspnetwp-exe-pid-xxxx-s 3 ASP.NET 2.0 Application on IIS 5 Resulting in Error (aspnet_wp.exe (PID: XXXX) stopped unexpectedly.) Leyu 2008-10-24T13:11:48Z 2009-10-29T21:40:51Z <p>After hosting an ASP.NET 2.0 web application on a windows 2000 server(IIS 5). I was unable to browse the web site.</p> <p>The following error message was displayed on the browser and three Event Log entries were added...</p> <p><strong>Error Message on Browser</strong></p> <blockquote> <p>Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.</p> </blockquote> <p><strong>Event Log Entries</strong></p> <blockquote> <p>Event Type: Error<br/> Event Source: ASP.NET 2.0.50727.0<br/> Event Category: None<br/> Event ID: 1000<br/> Date: 10/24/2008<br/> Time: 3:45:26 PM<br/> User: N/A<br/> Computer: XXXXX<br/> Description: aspnet_wp.exe (PID: XXXX) stopped unexpectedly.</p> <p>Event Type: Error<br/> Event Source: ASP.NET 2.0.50727.0<br/> Event Category: None<br/> Event ID: 1088<br/> Date: 10/24/2008<br/> Time: 3:45:26 PM<br/> User: N/A<br/> Computer: XXXXX<br/> Description: Failed to execute request because the App-Domain could not be created. Error: 0x80070005 Access is denied.<br/></p> <p>Event Type: Warning<br/> Event Source: ASP.NET 2.0.50727.0<br/> Event Category: None<br/> Event ID: 1073<br/> Date: 10/24/2008<br/> Time: 3:45:26 PM<br/> User: N/A<br/> Computer: WEBDEV<br/> Description: Failed to initialize the AppDomain:/LM/W3SVC/1/Root/WebApplicationName<br/> Exception: System.IO.FileLoadException<br/> Message: Could not load file or assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Access is denied. StackTrace: at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark&amp; stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)<br/> at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)<br/> at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)<br/> at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark&amp; stackMark)<br/> at System.Activator.CreateInstance(String assemblyName, String typeName)<br/> at System.AppDomain.CreateInstance(String assemblyName, String typeName)<br/> at System.AppDomain.CreateInstance(String assemblyName, String typeName)<br/> at System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironment(String appId, IApplicationHost appHost, HostingEnvironmentParameters hostingParameters)<br/> at System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironmentAndReportErrors(String appId, IApplicationHost appHost, HostingEnvironmentParameters hostingParameters)</p> </blockquote> <p>Any Ideas...</p> <p>** Edit **</p> <p>And Why System.IO.FileLoadException is thrown for accessing System.Web assembly ?</p> http://stackoverflow.com/questions/1232096/how-to-horizonatally-center-a-floating-element-of-a-variable-width/1232297#1232297 3 Answer by Leyu for How to horizonatally center a floating element of a variable width? Leyu 2009-08-05T10:06:50Z 2009-08-05T10:06:50Z <p>Assuming the element which is floated and will be centered is a div with an id="content" ... </p> <pre><code>&lt;body&gt; &lt;div id="wrap"&gt; &lt;div id="content"&gt; This will be centered &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>And apply the following CSS</p> <pre><code>#wrap { float: left; position: relative; left: 50%; } #content { float: left; position: relative; left: -50%; } </code></pre> <p>Here is a good reference regarding that <a href="http://dev.opera.com/articles/view/35-floats-and-clearing/#centeringfloats" rel="nofollow">http://dev.opera.com/articles/view/35-floats-and-clearing/#centeringfloats</a></p> http://stackoverflow.com/questions/1039465/should-i-always-call-page-isvalid-in-asp-net-webforms-c/1064256#1064256 1 Answer by Leyu for Should I always call Page.IsValid in ASP.NET WebForms C#? Leyu 2009-06-30T15:15:09Z 2009-06-30T15:15:09Z <p>You can check the validity of a Page by checking the Page.IsValid property, your purpose to check the Page.IsValid might vary like </p> <ul> <li>If you have Validators which has the <em>EnableClientScript</em> property set to false</li> <li>If you have a <em>server side validated Validator</em>.</li> <li>Before performing a critical operation in a PostBack event handler body like <em>Save</em>, <em>Delete</em>, <em>Authenticate</em>...</li> <li>Do/display different things depending on the validity of page...</li> <li>Any thing you can think of...</li> </ul> <p>So when/where can you call Page.IsValid</p> <ol> <li>If the page is in <strong>post back</strong></li> <li>If the <strong>post back</strong> is caused by an input control with the <strong>CausesValidation</strong> property set to <strong>true</strong>.</li> <li>After a call is made to the <strong>Page.Validate</strong>, i.e <strong>after the Page.Load event</strong>.</li> </ol> <p>You can check Page.IsValid in the page life cycle if the place/time invoked satisfies the above criteria; otherwise the Page.IsValid will result in the <em>System.Web.HttpException</em> being thrown.</p> <p>You should use Page.IsValid <strong>where it makes sense</strong>; like in the postback event handlers of input controls(with CausesValidation=true) and require the state of the page to be valid to perform their task correctly. (if you have server side validated validators or validators with client side validation switched off it becomes a <strong>MUST</strong>). </p> <pre><code> protected void btnSave_Click(object sender, EventArgs e) { //Note that there might be ServerSideValidation which evaluated to false. if (!Page.IsValid) return; CurrentEntity.Save(); } </code></pre> <p>Finally note that Page.IsValid only checks for validation errors in the validator controls on your page, it all depends on what your validator controls do.</p> http://stackoverflow.com/questions/877227/asp-net-difference-between-runatserver-and-server-controls/877331#877331 1 Answer by Leyu for asp.net: difference between runat="server" and server controls Leyu 2009-05-18T11:50:13Z 2009-05-18T11:50:13Z <p>The button represented by <code>&lt;asp:Button runat="server".../&gt;</code> will be converted to a web server control with a rich state model and different properties and methods which has more clear representation in real world like Button.Text = "Click Me".</p> <p>The button represented by <code>&lt;input type="button" runat="server"..../&gt;</code> will be converted to html server control represented by HtmlInputButton; with has limited properties, methods and events. Most of the properties resemble the html equivalents like Button.Value="Click Me".</p> <p>Note that elements in a markup page are pre-processed/compiled before being used and will be converted to a class representation where every element is represented by a control. You can access server side controls which are identified by the runat="server" tag from the code behind since they will have the correct matching server control(web/html), other static content including an <code>&lt;input type="button.../&gt;</code> tag with out the runat="server" will be represented as a LiteralControl.</p> http://stackoverflow.com/questions/233478/asp-net-2-0-application-on-iis-5-resulting-in-error-aspnetwp-exe-pid-xxxx-s/239387#239387 1 Answer by Leyu for ASP.NET 2.0 Application on IIS 5 Resulting in Error (aspnet_wp.exe (PID: XXXX) stopped unexpectedly.) Leyu 2008-10-27T09:16:52Z 2008-10-27T09:52:52Z <p>I discovered that when the web site folder was copied to the server it inherited the security permissions of the parent folder which only had permission for the Administrator, Administrators &amp; System accounts.</p> <p>I added</p> <ul> <li>IUSER_MACHINENAME (Internet Guest Account)</li> <li>ASPNET (ASP.NET Machine Account)</li> </ul> <p>With <strong>Read &amp; Execute</strong>, <strong>List Folder Contents</strong> and <strong>Read</strong> permissions.</p> <p><strong>Even though the problem is resolved I still have some questions</strong></p> <p>It's clear from the third event log entry that the ApplicationManager fails to create the HostingEnvironment which is in the System.Web assembly.<br/><br/> Since FileLoadException is thrown for System.Web it seems like the ASP.NET worker process doesn't have access to the GAC folder.</p> <p>Why is the FileLoadException thrown for accessing System.Web?</p> http://stackoverflow.com/questions/61953/how-do-you-bind-an-enum-to-a-dropdownlist-control-in-asp-net/62023#62023 5 Answer by Leyu for How do you bind an Enum to a DropDownList control in ASP.NET? Leyu 2008-09-15T09:31:50Z 2008-09-15T11:21:02Z <p>Use a Utility class to get a Dictionary from an Enum and then bind that to a bindable Control</p> <pre><code> public static class Utilities { public static Dictionary&lt;int, string&gt; GetEnumPairs(Type type) { if (type == null) throw new ArgumentNullException("type"); if (!type.IsEnum) throw new ArgumentException("Only enumeration type is expected."); Dictionary&lt;int, string&gt; pairs = new Dictionary&lt;int, string&gt;(); foreach (int i in Enum.GetValues(type)) { pairs.Add(i, Enum.GetName(type, i)); } return pairs; } } </code></pre> <p>And then use the above utility method when binding enum data to control...</p> <pre><code>ddlResponse.DataSource = Utilities.GetEnumPairs(typeof(Response)); ddlResponse.DataTextField = "Value"; ddlResponse.DataValueField = "Key"; ddlResponse.DataBind(); </code></pre> http://stackoverflow.com/questions/41256/new-added-types-in-net-framework-2-0-service-pack-1 3 New Added Types in .NET Framework 2.0 Service Pack 1 Leyu 2008-09-03T06:49:23Z 2008-09-03T12:02:39Z <p>I couldn't find the the newly added types documented anywhere; only the bug fixes are listed.</p> <p>Any ideas...</p> http://stackoverflow.com/questions/41256/new-added-types-in-net-framework-2-0-service-pack-1/41517#41517 0 Answer by Leyu for New Added Types in .NET Framework 2.0 Service Pack 1 Leyu 2008-09-03T12:02:39Z 2008-09-03T12:02:39Z <p>Based on what D2VIANT referenced</p> <blockquote> <p>Full Article: <a href="http://www.hanselman.com/blog/CatchingRedBitsDifferencesInNET20AndNET20SP1.aspx" rel="nofollow">http://www.hanselman.com/blog/CatchingRedBitsDifferencesInNET20AndNET20SP1.aspx</a></p> </blockquote> <p>I was able to find additional resources which list the changes in .NET SP1 some of the types added/affected are listed below</p> <ul> <li>System.DateTimeOffset</li> <li>System.GCCollectionMode</li> <li>System.Runtime.GCLatencyMode</li> <li>System.Configuration.OverrideMode</li> <li>System.Data.SqlClient.SortOrder</li> <li>System.Data.Design.TypedDataSetSchemaImporterExtensionFx35</li> <li>System.Data.TypedDataSetGenerator.GenerateOption</li> <li>System.UriIdnScope</li> <li>System.ComponentModel.INotifyPropertyChanging</li> <li>System.ComponentModel.PropertyChangingEventArgs</li> <li>System.ComponentModel.PropertyChangingEventHandler</li> <li>System.ComponentModel.Design.Serialization.IDesignerLoaderHost2</li> <li>System.Configuration.IdnElement</li> <li>System.Configuration.IriParsingElement</li> <li>System.Configuration.UriSection</li> <li>System.Net.Sockets.SendPacketsElement</li> <li>and Many More... <a href="http://www.hanselman.com/blog/content/binary/org2.0to2.0/APIChangesorg2.0to2.0.html" rel="nofollow">API Changes from org2.0 to 2.0</a> and <a href="http://www.hanselman.com/blog/content/binary/RedBitsChangesv2.html" rel="nofollow">New Methods and Types</a></li> </ul> http://stackoverflow.com/questions/41256/new-added-types-in-net-framework-2-0-service-pack-1/41298#41298 0 Answer by Leyu for New Added Types in .NET Framework 2.0 Service Pack 1 Leyu 2008-09-03T07:52:38Z 2008-09-03T09:24:53Z <p>I never thought there was a newly added type in .NET 2.0 SP1 until I came across the following links <a href="http://davesbox.com/archive/2008/08/25/new-for-visual-studio-2008-sp1-and-fxcop-1-36-multi-targeting-rule.aspx" rel="nofollow">David Kean's Blog</a>, <a href="http://msdn.microsoft.com/en-us/library/system.datetimeoffset.aspx" rel="nofollow">MSDN-DateTimeOffset</a> both referring <strong>DateTimeOffset</strong> structure which was added in SP1.</p> <p>Just thought there was an exhaustive list of types added...</p> http://stackoverflow.com/questions/32107/practical-programming-test-in-interview/32129#32129 0 Answer by Leyu for Practical programming test in interview Leyu 2008-08-28T12:49:05Z 2008-08-28T12:49:05Z <p>On my last interview I was presented with a paper stating a problem definition and data collected.</p> <ul> <li>I was expected to create the database design which was about 2 or 3 tables, and do indexes, constraints, relations in SQL Server</li> <li> Input some of the data in the matching tables, beware of char size limits in real data.</li> <li> Write a program which shows the hierarchical data in WinForms using a combobox and listbox in .NET.</li> </ul> <p>This seems like a trivial task but most don't complete in time (40 mins) or lose the whole track.</p> http://stackoverflow.com/questions/1631367/net-workflow-engine-suggestions-currently-considering-stateless/1631394#1631394 Comment by Leyu on .NET Workflow Engine Suggestions ( currently considering stateless ) Leyu 2009-11-02T09:06:59Z 2009-11-02T09:06:59Z I want a more light weight solution http://stackoverflow.com/questions/1631367/net-workflow-engine-suggestions-currently-considering-stateless Comment by Leyu on .NET Workflow Engine Suggestions ( currently considering stateless ) Leyu 2009-10-27T14:59:50Z 2009-10-27T14:59:50Z Yes, other than WF. http://stackoverflow.com/questions/1063876/what-makes-javascript-dangerous-what-uses-that-javascript-can-be-used-as/1063904#1063904 Comment by Leyu on What makes javascript dangerous? What uses that javascript can be used as? Leyu 2009-06-30T15:38:26Z 2009-06-30T15:38:26Z Check a bunch of great videos on JavaScript by Douglas Crockford and others. <a href="http://developer.yahoo.com/yui/theater/" rel="nofollow">developer.yahoo.com/yui/theater</a> //Douglas Crockford — The JavaScript Programming Language <a href="http://video.yahoo.com/video/play?vid=111593" rel="nofollow">video.yahoo.com/video/play?vid=111593</a> //Douglas Crockford — Advanced JavaScript <a href="http://video.yahoo.com/video/play?vid=111585" rel="nofollow">video.yahoo.com/video/play?vid=111585</a> The above 2 videos describe the Good the Bad and Ugly parts of JavaScript. http://stackoverflow.com/questions/734525/getting-started-with-f/734542#734542 Comment by Leyu on Getting started with F# Leyu 2009-06-09T13:51:10Z 2009-06-09T13:51:10Z <a href="http://www.dnrtv.com/default.aspx?showNum=136" rel="nofollow">dnrtv.com/default.aspx?showNum=136</a> http://stackoverflow.com/questions/950726/dynamic-sort-criteria-for-generic-list/950767#950767 Comment by Leyu on Dynamic Sort Criteria for Generic List Leyu 2009-06-04T14:31:36Z 2009-06-04T14:31:36Z That would result in a lot of duplication in calling code. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13332#13332 Comment by Leyu on What is the single most influential book every programmer should read? Leyu 2009-06-03T12:46:02Z 2009-06-03T12:46:02Z It sure changes the way you think