User Ngu Soon Hui - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:57:25Z http://stackoverflow.com/feeds/user/3834 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1815438/selecting-on-a-many-table-using-linq/1815468#1815468 1 Answer by Ngu Soon Hui for Selecting on a many table using Linq. Ngu Soon Hui 2009-11-29T12:54:01Z 2009-11-29T13:38:54Z <p>The error lies here:</p> <pre><code> recipes = recipes.Where(r =&gt; r.Ingredients.Where(i =&gt; i.IngredientName.Contains(word))); </code></pre> <p>The condition inside <code>Where</code> must return a boolean, in this case, the <code>r.Ingredients.Where(i =&gt; i.IngredientName.Contains(word))</code> will not return a boolean, and hence the error. </p> <p>This is how you can fix the problem:</p> <pre><code>recipes = recipes.Where(i =&gt; i.Ingredients.Any(row=&gt;row.IngredientName.Contains(word))); </code></pre> http://stackoverflow.com/questions/1811729/table-widget-in-symfony 0 Table Widget in Symfony Ngu Soon Hui 2009-11-28T05:56:48Z 2009-11-29T12:52:49Z <p>Is there a table widget for Symfony? I know there are people who <a href="http://www.mail-archive.com/symfony-devs@googlegroups.com/msg02145.html" rel="nofollow">planned to build this</a>, but don't know whether it got incorporated into Symfony or not. </p> <p>It would be tremendously useful if table widget is available and all we have to do is to bind the <code>array</code> to it and it will show. </p> http://stackoverflow.com/questions/1815452/how-to-check-if-implicit-or-explicit-cast-exists/1815461#1815461 0 Answer by Ngu Soon Hui for How to check if implicit or explicit cast exists? Ngu Soon Hui 2009-11-29T12:52:24Z 2009-11-29T12:52:24Z <p>Why can't you do something like this?</p> <pre><code>public class MyClass&lt;T&gt; where T : string { public T DoSomethingWith(string s) { // ... } } </code></pre> <p>In this way you can check whether <code>s</code> is convertible to <code>T</code> in the <code>DoSomethingWith</code> code. From there you can throw exception if it can't, or do the casting, if it can</p> http://stackoverflow.com/questions/1815368/where-can-i-find-public-domain-open-source-list-of-softwares/1815381#1815381 0 Answer by Ngu Soon Hui for where can i find public domain open source list of softwares Ngu Soon Hui 2009-11-29T12:24:57Z 2009-11-29T12:24:57Z <p><a href="http://sourceforge.net/" rel="nofollow">sourceforge</a></p> <p><a href="http://code.google.com/hosting/" rel="nofollow">google code</a></p> http://stackoverflow.com/questions/1815322/how-to-subversion-autocad/1815332#1815332 2 Answer by Ngu Soon Hui for how to subversion AutoCAD Ngu Soon Hui 2009-11-29T11:48:29Z 2009-11-29T11:48:29Z <p>You can check-in the AutoCAD files into your Subversion system just like how you check-in other files, and you can rollback the files just like how you roll back other files.</p> <p>But you can't do a diff or merge operation, for autocad files are binary files.</p> http://stackoverflow.com/questions/1815312/c-generics-constrain-to-specific-structs/1815321#1815321 -1 Answer by Ngu Soon Hui for C# Generics, Constrain to Specific Structs Ngu Soon Hui 2009-11-29T11:44:10Z 2009-11-29T11:44:10Z <p>I think both are not OK, a struct is not a valid constraint. A type used as a constraint must be interface, non sealed or a type parameter</p> http://stackoverflow.com/questions/1812603/error-logging-and-exception-notififcation-library 1 Error Logging and Exception Notififcation Library Ngu Soon Hui 2009-11-28T14:17:48Z 2009-11-29T11:35:07Z <p>For any serious software application, error logging and a feedback mechanism is simply indispensable. After you have captured the error log a log file ( maybe using something like <a href="http://log4net.sourceforge.net/" rel="nofollow">log4net</a>), or maybe during the time when an exception occurs, you want to prompt out a message box ( see below image), apologizing for the problem, and ask the user whether he would like to send the current state of the application along with all the relevant information to your email address. <img src="http://windowscoding.com/cfs-filesystemfile.ashx/%5F%5Fkey/CommunityServer.Blogs.Components.WeblogFiles/blake/MicrosoftVisualStudio2008%5F5F00%5F32CB08FC.png" alt="alt text"></p> <p>Now, this is <strong><em>easy</em></strong> to implement, but <strong><em>very tedious</em></strong> and I don't want to write a separate class for this for each of my projects, and neither do I want to reinvent the wheel. So I am looking for a open source library that does this well.</p> <p>Any recommended component for exception notification library?</p> <p>I am doing WinForms development, but the underlying concept should be the same.</p> http://stackoverflow.com/questions/1815228/c-do-i-need-manifest-files/1815294#1815294 0 Answer by Ngu Soon Hui for C# - do I need manifest files? Ngu Soon Hui 2009-11-29T11:30:42Z 2009-11-29T11:30:42Z <p>It is needed <a href="http://www.dotnetspark.com/kb/682-what-is-manifest.aspx" rel="nofollow">for the purpose of</a> </p> <blockquote> <p>specifying the assembly's version requirements and security identity, and all metadata needed to define the scope of the assembly and resolve references to resources and classes</p> </blockquote> http://stackoverflow.com/questions/1815252/anonymous-collection-initializer-for-a-dicrionary/1815255#1815255 1 Answer by Ngu Soon Hui for Anonymous collection initializer for a dicrionary Ngu Soon Hui 2009-11-29T11:11:07Z 2009-11-29T11:20:19Z <p>Yes, but only with great workaround, and only within a method.</p> <p>This is how you can do it:</p> <pre><code> static Dictionary&lt;TKey, TValue&gt; NewDictionary&lt;TKey, TValue&gt;(TKey key, TValue value) { return new Dictionary&lt;TKey, TValue&gt;(); } public void DictRun() { var myDict = NewDictionary(new { url="a"}, new { Text = "dollar", Url ="urlA"}); myDict.Add(new { url = "b" }, new { Text = "pound", Url = "urlB" }); myDict.Add(new { url = "c" }, new { Text = "rm", Url = "urlc" }); foreach (var k in myDict) { var url= k.Key.url; var txt= k.Value.Text; Console.WriteLine(url); Console.WriteLine(txt); } } </code></pre> <p>You can refer to this <a href="http://stackoverflow.com/questions/1619518/a-dictionary-where-value-is-an-anonymous-type-in-c">SO question</a> for more info.</p> http://stackoverflow.com/questions/688740/how-to-make-sure-the-code-is-still-working-after-refactoring-dynamic-language 5 How to Make sure the code is still working after refactoring ( Dynamic language) Ngu Soon Hui 2009-03-27T06:36:30Z 2009-11-28T18:02:38Z <p>How to make sure that code is still working after refactoring ( i.e, after variable name change)?</p> <p>In static language, if a class is renamed but other referring class is not, then I will get a compilation error. </p> <p>But in dynamic language there is no such safety net, and your code can break during refactoring <strong>if you are not careful enough</strong>. You can use unit test, but when you are using mocks it's pretty hard to know the name changes and as a consequence, it may not help.</p> <p>How to solve this problem?</p> http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval 2 Built in .Net algorithm to round value up to the nearest 10 interval Ngu Soon Hui 2008-11-08T06:05:52Z 2009-11-26T14:30:12Z <p>How to, in C# round up any value to 10 interval? For example, if I have 11, I want it to return 10, if I have 136, then I want it to return 140. </p> <p>I can easily do it by hand</p> <pre><code>return ((int)( number/10))*10 </code></pre> <p>But I am looking for an builtin algorithm to do this job, something like Math.Round(). The reason why I won't want to do by hand is that I don't want to write same or similar piece of code all over my projects, even for something as simple as the above. </p> http://stackoverflow.com/questions/1728268/connecting-to-multiple-database-dynamically 0 Connecting to Multiple Database Dynamically Ngu Soon Hui 2009-11-13T09:57:06Z 2009-11-25T15:31:26Z <p>I have a master database, that has a table (<code>companyTable</code>) stores the name of the child database for each company. I need to use Pentaho to</p> <ol> <li>Obtain a list of company database name from <code>companyTable</code>. </li> <li>Establish the connection to the company database by iterating over the value obtained in 1.</li> <li>Obtain some information from those company databases and put it in another database.</li> </ol> <p>The problem now is that I can't define the database connection dynamically; When I try to create a new Database Connection by inputing a variable (<code>${{dbname}}</code>):</p> <p><img src="http://lh5.ggpht.com/%5FSDci0Pf3tzU/Sv0taGD7AHI/AAAAAAAAFPk/uXzk9qzZQcc/dbname..png" alt="alt text"></p> <p>the program will throw me a </p> <blockquote> <p>Data source name not found and no default driver specified</p> </blockquote> <p>exception when run. </p> <p>Any idea how to connect to multiple databases by retrieving the relevant database connection name from another master database?</p> <p>I am using Kettle.</p> http://stackoverflow.com/questions/1796492/usage-of-desktop-c-dll-in-windows-mobile/1796502#1796502 0 Answer by Ngu Soon Hui for Usage of Desktop C# DLL in windows mobile Ngu Soon Hui 2009-11-25T12:03:24Z 2009-11-25T12:03:24Z <p>Can you verify that <code>Interop.CDO</code> is available on your mobile platform? Or that it is compatible with the mobile environment</p> http://stackoverflow.com/questions/1796259/create-a-database-in-c/1796399#1796399 0 Answer by Ngu Soon Hui for Create a Database in C# Ngu Soon Hui 2009-11-25T11:37:51Z 2009-11-25T11:37:51Z <p>Either Microsoft Access or sqlite is good enough for your purpose</p> http://stackoverflow.com/questions/1796097/asp-net-mvc-issues-meant-for-advanced-developers-only/1796120#1796120 0 Answer by Ngu Soon Hui for ASP.Net MVC issues, meant for advanced developers only? Ngu Soon Hui 2009-11-25T10:48:35Z 2009-11-25T10:48:35Z <p>MVC is not a new concept; in fact other languages have this kind of framework <strong><em>long</em></strong> before Microsoft got it. Think about <a href="http://rubyonrails.org/" rel="nofollow">Ruby On Rails</a>, <a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a>, <a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a> etc. </p> <p>If you say that MVC is for the hardcore and the alpha geeks, then by your logic other language developers are much more advanced than .Net developers. I don't think this is true.</p> <p>Your problem with MVC stems from your webform background; ASP.Net and ASP.NET MVC greatly differ in terms of concepts and approach. So some unfamiliarity is expected for those who are moving from one framework into another. Me, on the other hand, who has no webform experience ( although I do have winform experience), don't find MVC hard to grasp.</p> <p>And I don't think I am smarter than anyone else.</p> http://stackoverflow.com/questions/1795021/writing-a-c-dll-then-wrapping-it-in-c/1795118#1795118 3 Answer by Ngu Soon Hui for Writing a C++ DLL, then wrapping it in C#. Ngu Soon Hui 2009-11-25T06:58:30Z 2009-11-25T06:58:30Z <p>You can just create a normal kind of C++ dll, and interop with it from your C# code.</p> <p>Here's <a href="http://msdn.microsoft.com/en-us/library/aa645736%28VS.71%29.aspx" rel="nofollow">a tutorial</a> that you can use.</p> http://stackoverflow.com/questions/1794861/concurrent-debugging-unit-testing-alternitive-to-ms-chess/1794946#1794946 0 Answer by Ngu Soon Hui for Concurrent debugging / unit testing alternitive to MS CHESS Ngu Soon Hui 2009-11-25T05:55:59Z 2009-11-25T05:55:59Z <p><a href="http://learn.typemock.com/typemock-racer" rel="nofollow">Typemock Racer</a>.</p> <p>But it is not free. I am not sure whether they have academic license, though</p> http://stackoverflow.com/questions/1794792/whats-the-difference-between-response-write-andresponse-output-write/1794809#1794809 3 Answer by Ngu Soon Hui for What’s the difference between Response.Write() andResponse.Output.Write()? Ngu Soon Hui 2009-11-25T05:17:15Z 2009-11-25T05:17:15Z <p><a href="http://www.dotnetspider.com/forum/ViewForum.aspx?ForumId=10122" rel="nofollow">See this</a>:</p> <p>The difference between <code>Response.Write()</code> and <code>Response.Output.Write()</code> in ASP.NET. The short answer is that the latter gives you <code>String.Format-style</code> output and the former doesn't. The long answer follows.</p> <p>In ASP.NET the <code>Response</code> object is of type <code>HttpResponse</code> and when you say <code>Response.Write</code> you're really saying (basically) <code>HttpContext.Current.Response.Write</code> and calling one of the many overloaded <code>Write</code> methods of <code>HttpResponse</code>. </p> <p><code>Response.Write</code> then calls <code>.Write()</code> on it's internal <code>TextWriter</code> object:</p> <pre><code>public void Write(object obj){ this._writer.Write(obj);} </code></pre> <p><code>HttpResponse</code> also has a Property called <code>Output</code> that is of type, yes, <code>TextWriter</code>, so:</p> <pre><code>public TextWriter get_Output(){ return this._writer; } </code></pre> <p>Which means you can to the <code>Response</code> whatever a <code>TextWriter</code> will let you. Now, TextWriters support a <code>Write()</code> method ala <code>String.Format</code>, so you can do this:</p> <pre><code>Response.Output.Write("Scott is {0} at {1:d}", "cool",DateTime.Now); </code></pre> <p>But internally, of course, this this is happening:</p> <pre><code>public virtual void Write(string format, params object[] arg) { this.Write(string.Format(format, arg)); } </code></pre> http://stackoverflow.com/questions/857516/online-modrewrite-testing-tool 2 Online mod_rewrite testing tool Ngu Soon Hui 2009-05-13T11:49:17Z 2009-11-24T19:08:36Z <p><code>mod_rewrite</code> statements can be hard to write and debug, therefore I need a lightweight online tool that enables me to test my <code>RewriteCond</code>, <code>RewriteRule</code> statements on the fly.</p> <p>Any such tool?</p> http://stackoverflow.com/questions/1791020/get-computer-description-from-computer-in-network/1791098#1791098 0 Answer by Ngu Soon Hui for get computer description from computer in network Ngu Soon Hui 2009-11-24T16:12:23Z 2009-11-24T16:12:23Z <p>You can try this:</p> <pre><code>string name = System.Net.Dns.GetHostByName("localhost").HostName </code></pre> http://stackoverflow.com/questions/1780783/pass-data-arrays-into-jqgrid-table 0 Pass Data Arrays into jqgrid table Ngu Soon Hui 2009-11-23T02:12:16Z 2009-11-23T22:28:38Z <p>In my application, I will fetch a table of data from the server side when the page is first loaded, and use jqgrid to render it. </p> <p>I can't seem to get it to work, when I request for the <code>DummyView</code> page for the example below, the web browser pops up a message, asking me to download the <code>application/json</code> file, indicates that something is deeply wrong. Here's my Jquery code:</p> <pre><code> $(document).ready(function(){ $("#list4").jqGrid({ url:'../../ViewRecord/DummyView', datatype:'JSON', mtype: 'GET', colNames:['Id','Name','Description'], colModel:[ {name:'id',index:'id',width:55,resizable:true}, {name:'name',index:'name',width:90,resizable:true}, {name:'description',index:'description',width:120,resizable:true}], pager: jQuery('#pager'), rowNum:10, rowList:[5,10,20,50], sortname: 'Id', sortorder: "desc", viewrecords: true, imgpath:'/images', caption: 'My first grid' }); }); </code></pre> <p>And here's my <code>ViewRecord/DummyView</code> controller method:</p> <pre><code>public ActionResult DummyView() { var page = new { page = 1 }; var rows = new object[2]; rows[0] = new { id = 222, cell = new[] { "222", "Blue", "This is blue" } }; rows[1] = new { id = 2, cell = new[] { "2", "Red", "This is red" } }; //var endarray = new[] {page, rows}; var result = new JsonResult(); result.Data = new { page = 1, records = 2, rows, total = 1 }; return result; } </code></pre> <p>Any idea how to get jqgrid to work with ASP.NET MVC?</p> http://stackoverflow.com/questions/1783124/castle-ioc-resolving-circular-references/1783200#1783200 -1 Answer by Ngu Soon Hui for castle IOC - resolving circular references Ngu Soon Hui 2009-11-23T13:43:24Z 2009-11-23T13:43:24Z <p>As long as you put both Presenter and View inside the same csproject, there shouldn't be any circular reference</p> http://stackoverflow.com/questions/1782845/php-login-authenication/1782863#1782863 1 Answer by Ngu Soon Hui for PHP login authenication Ngu Soon Hui 2009-11-23T12:27:35Z 2009-11-23T12:27:35Z <p>Maybe you can first check whether it is login or not:</p> <pre><code>if(isset($_SESSION['LoggedIn']) &amp;&amp;$_SESSION['LoggedIn']==1) { // proceed to do the login stuff } else if (isset($_POST['submit'])) { $username = $_POST["user_login"]; $password = $_POST["user_pass"]; $_SESSION['LoggedIn'] = 1; $_SESSION['user_login'] = $username; $_SESSION['user_pass'] = $password; // some coding about ftp login } else { } </code></pre> http://stackoverflow.com/questions/1782799/net-code-refactoring-when-overloads-differ-on-data-type/1782850#1782850 0 Answer by Ngu Soon Hui for .NET code refactoring when overloads differ on data type Ngu Soon Hui 2009-11-23T12:25:26Z 2009-11-23T12:25:26Z <p>Is it possible to create a convertor that converts <code>TimeSpan</code> and <code>Enum</code> into the <code>Double</code> parameter, or vice versa?</p> <p>If yes, then you can define such a helper method first</p> <pre><code>public double Convertor(TimeSpan ts, Enum enum) { } </code></pre> <p>and then write the following code:</p> <pre><code> //The helper methods are in a different class internal void helperMethod1(double[,] data, double increment) { //Some 20 lines of common code for (int i = 0; i &lt; data.GetLength(0); ++i) { TargetFunction1(data, increment); } //Some more common code } internal void helperMethod1(double[,] data, TimeSpan increment, Enum someEnum) { helperMethod1(data, Convertor(increment, someEnum); } </code></pre> http://stackoverflow.com/questions/1782530/alternate-background-row-in-jqgrid/1782543#1782543 0 Answer by Ngu Soon Hui for alternate background row in jqgrid Ngu Soon Hui 2009-11-23T11:24:24Z 2009-11-23T11:24:24Z <p><a href="http://www.drewtech.net/2009/06/alternating-row-style-with-jqgrid/" rel="nofollow">Here's how you do it</a>:</p> <pre><code>$("#myGrid").jqGrid({ ... gridComplete: function() { var _rows = $(".jqgrow"); for (var i = 0; i &lt; _rows.length; i += 2) { _rows[i].attributes["class"].value += " alt"; } } }); </code></pre> http://stackoverflow.com/questions/1782496/how-do-i-ignore-a-test-based-on-another-test-in-nunit/1782521#1782521 1 Answer by Ngu Soon Hui for How do I ignore a test based on another test in NUnit? Ngu Soon Hui 2009-11-23T11:20:17Z 2009-11-23T11:20:17Z <p>I don't think that's possible out-of-box.</p> <p>Anyway, your test class design as you described will make the test code very fragile.</p> http://stackoverflow.com/questions/1782506/mysql-connection-to-database-unknown/1782514#1782514 0 Answer by Ngu Soon Hui for MYSQL -connection to database unknown Ngu Soon Hui 2009-11-23T11:18:18Z 2009-11-23T11:18:18Z <p>can you check the connection string and then verify whether the given database is there?</p> http://stackoverflow.com/questions/1781947/how-to-integrate-drupal-this-way/1782056#1782056 0 Answer by Ngu Soon Hui for How to integrate drupal this way? Ngu Soon Hui 2009-11-23T09:35:16Z 2009-11-23T11:17:31Z <p><del>Here's how you can do it; you can <a href="http://www.thesitewizard.com/gettingstarted/setup-blog-with-drupal.shtml" rel="nofollow">configure drupal as a blogging platform</a>. </del></p> <p>OK, now you have clarified your question. In order to show the data, maybe you can write <a href="http://drupal.org/developing/modules" rel="nofollow">your own modules</a> that display whatever result your want. That's one way.</p> <p>Another way, a <em>very ugly</em> is, in your node page, <a href="http://drupal.org/node/23223" rel="nofollow">set your node to accept full PHP</a>, and then start writing PHP MySQL code. Like I told you, this is a very ugly way.</p> http://stackoverflow.com/questions/1782328/does-a-design-solution-need-a-proof-of-concept/1782359#1782359 1 Answer by Ngu Soon Hui for Does a design solution need a proof of concept? Ngu Soon Hui 2009-11-23T10:49:30Z 2009-11-23T11:07:49Z <blockquote> <p>When do we need to prove (with prototyping or any other kind of proof) that a design solution that we came up with is good before implementation?</p> </blockquote> <p>Actually, it depends on the stackholder. If your stack holder is already bought in by your idea, then no proof of concept is needed. Or else, you <em>will definitely need it</em>.</p> <p>A skeptical stackholder ( or the boss) will <em>always</em> have doubts over your proposed solution, it's up to <em>you</em> to convince them, and that's where proof of concept comes in, given that it's not possible to implement the solution before the stack holder are bought</p> http://stackoverflow.com/questions/1782393/i-want-to-crawl-my-website-for-every-one-hour/1782411#1782411 1 Answer by Ngu Soon Hui for I want to crawl my website for every one hour. Ngu Soon Hui 2009-11-23T11:00:44Z 2009-11-23T11:00:44Z <p>Improve your content, update your content regularly and Google will crawl your website frequently</p> http://stackoverflow.com/questions/1811729/table-widget-in-symfony/1815463#1815463 Comment by Ngu Soon Hui on Table Widget in Symfony Ngu Soon Hui 2009-11-29T13:57:25Z 2009-11-29T13:57:25Z Seems to me like this is the one http://stackoverflow.com/questions/1815438/selecting-on-a-many-table-using-linq/1815468#1815468 Comment by Ngu Soon Hui on Selecting on a many table using Linq. Ngu Soon Hui 2009-11-29T13:39:12Z 2009-11-29T13:39:12Z Answer updated... http://stackoverflow.com/questions/1815452/how-to-check-if-implicit-or-explicit-cast-exists/1815461#1815461 Comment by Ngu Soon Hui on How to check if implicit or explicit cast exists? Ngu Soon Hui 2009-11-29T12:57:32Z 2009-11-29T12:57:32Z d, I declared <code>T</code> as must be derived from string, this is not the same as saying it must be string. http://stackoverflow.com/questions/1812603/error-logging-and-exception-notififcation-library/1814449#1814449 Comment by Ngu Soon Hui on Error Logging and Exception Notififcation Library Ngu Soon Hui 2009-11-29T06:03:09Z 2009-11-29T06:03:09Z That would be a good idea, but utilizing an open source library is a better choice http://stackoverflow.com/questions/1808380/wanted-librarysystem-ctrlseparator-file-in-c-net Comment by Ngu Soon Hui on Wanted 'LibrarySystem.ctrlSeparator' file in C# .Net Ngu Soon Hui 2009-11-27T12:15:22Z 2009-11-27T12:15:22Z Please <b>don't</b> cross post. Here's the dupe: <a href="http://stackoverflow.com/questions/1808293/unable-to-open-my-project-in-c-net" rel="nofollow" title="unable to open my project in c net">stackoverflow.com/questions/1808293/&hellip;</a> http://stackoverflow.com/questions/1728268/connecting-to-multiple-database-dynamically/1797417#1797417 Comment by Ngu Soon Hui on Connecting to Multiple Database Dynamically Ngu Soon Hui 2009-11-25T15:40:51Z 2009-11-25T15:40:51Z It's Kettle, the data integration http://stackoverflow.com/questions/1728268/connecting-to-multiple-database-dynamically Comment by Ngu Soon Hui on Connecting to Multiple Database Dynamically Ngu Soon Hui 2009-11-25T15:31:13Z 2009-11-25T15:31:13Z It's Kettle, the data integration http://stackoverflow.com/questions/1796492/usage-of-desktop-c-dll-in-windows-mobile/1796502#1796502 Comment by Ngu Soon Hui on Usage of Desktop C# DLL in windows mobile Ngu Soon Hui 2009-11-25T13:20:39Z 2009-11-25T13:20:39Z If it's not supported, then you should rewrite your code so that it doesn't depends on this piece of functionalities. http://stackoverflow.com/questions/1794792/whats-the-difference-between-response-write-andresponse-output-write Comment by Ngu Soon Hui on What’s the difference between Response.Write() andResponse.Output.Write()? Ngu Soon Hui 2009-11-25T05:24:50Z 2009-11-25T05:24:50Z This is an exact dupe of <a href="http://stackoverflow.com/questions/111417/whats-the-difference-between-response-write-and-response-output-write" rel="nofollow" title="whats the difference between response write and response output write">stackoverflow.com/questions/111417/&hellip;</a> http://stackoverflow.com/questions/1782496/how-do-i-ignore-a-test-based-on-another-test-in-nunit Comment by Ngu Soon Hui on How do I ignore a test based on another test in NUnit? Ngu Soon Hui 2009-11-24T10:03:30Z 2009-11-24T10:03:30Z The accepted answer is <b>wrong</b>! See the comments http://stackoverflow.com/questions/1782496/how-do-i-ignore-a-test-based-on-another-test-in-nunit/1782520#1782520 Comment by Ngu Soon Hui on How do I ignore a test based on another test in NUnit? Ngu Soon Hui 2009-11-23T15:58:33Z 2009-11-23T15:58:33Z This solution is dangerously coming close to <b>wrong</b> because it depends on the order of the run; currently nunit runs according to the test name so this would be fine. But what if in future Nunit changes the run sequence, that <code>testGet</code> is run first before <code>testAdd</code>? In this case <code>testAdd</code> will be run, but <code>testGet</code> won't! http://stackoverflow.com/questions/1782634/how-to-split-a-string Comment by Ngu Soon Hui on how to split a string Ngu Soon Hui 2009-11-23T11:47:21Z 2009-11-23T11:47:21Z most likely .net http://stackoverflow.com/questions/1781947/how-to-integrate-drupal-this-way Comment by Ngu Soon Hui on How to integrate drupal this way? Ngu Soon Hui 2009-11-23T11:30:35Z 2009-11-23T11:30:35Z My answer is updated http://stackoverflow.com/questions/1781947/how-to-integrate-drupal-this-way Comment by Ngu Soon Hui on How to integrate drupal this way? Ngu Soon Hui 2009-11-23T09:41:41Z 2009-11-23T09:41:41Z <i>Still</i> too vague; what do you mean by &quot;show it with my own code&quot;? http://stackoverflow.com/questions/1782064/look-it-this-code-is-user-for-to-retrive-the-current-window-user-from-active-dir Comment by Ngu Soon Hui on Look it this Code: is user for to retrive the Current Window User From Active Directory in C# Ngu Soon Hui 2009-11-23T09:40:31Z 2009-11-23T09:40:31Z Not only that, make sure your question is properly asked, I don't understand what is your question here.