User Liwen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:58:03Z http://stackoverflow.com/feeds/user/33449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/868033/check-that-an-svn-repository-url-does-not-exist/868068#868068 2 Answer by Liwen for Check that an svn repository url does not exist Liwen 2009-05-15T11:07:16Z 2009-05-15T11:07:16Z <p>You can just use </p> <pre><code>svn ls https://developernetwork.repo.net/svn/Projects/Calculator/ </code></pre> <p>It will tell you if the repository(directory) exist or not.</p> http://stackoverflow.com/questions/713007/asp-net-validaterequest-false/713039#713039 1 Answer by Liwen for Asp.Net Validaterequest False Liwen 2009-04-03T08:33:55Z 2009-04-03T08:33:55Z <p>Basically validating user input by replacing special characters usually cause more trouble and doesn't really solve the problem. It all depends what the user will input, sometimes they need the special characters like </p> <pre><code>&amp; # &lt; &gt; " ’ % @ = </code></pre> <p>think about savvy users could still use xp_ command or even use CONVERT() function to do a ASCII/binary automated attack. As long as you parametrized all input, it should be ok. </p> http://stackoverflow.com/questions/398509/casting-sqldatareaders/398898#398898 1 Answer by Liwen for Casting SqlDataReaders Liwen 2008-12-29T22:22:39Z 2008-12-29T22:22:39Z <p>reader[0] returns an System.Object, (int)reader[0] is actually doing a cast from Object to Int32.</p> <p>If you call GetXXX(0) methods, no conversions are performed. Therefore, the data retrieved from the stream must already be the type the method specified.</p> <p>If the type of data retrieved doesn't match or the column has DBNull, it throws an InvalidCastException.</p> http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354420#354420 3 Answer by Liwen for GridView - Show headers on empty data source. Liwen 2008-12-09T22:07:01Z 2008-12-09T22:21:51Z <p>You can use HeaderTemplate property to setup the head programatically or use ListView instead if you are using .NET 3.5.</p> <p>Personally, I prefer ListView over GridView and DetailsView if possible, it gives you more control over your html. </p> http://stackoverflow.com/questions/354288/css-displayinline-property-with-list-style-image-property-on-li-tags/354337#354337 1 Answer by Liwen for CSS display:inline property with list-style-image: property on <li> tags Liwen 2008-12-09T21:44:31Z 2008-12-09T21:44:31Z <p>I would suggest not to use <code>list-style-image</code>, as it behaves quite differently in different browsers, especially the image position</p> <p>instead, you can use something like this</p> <pre><code>ol.widgets, ol.widgets li { list-style: none; } ol.widgets li { padding-left: 20px; backgroud: transparent ("image") no-repeat x y; } </code></pre> <p>it works in all browsers and would give you the identical result in different browsers.</p> http://stackoverflow.com/questions/354232/how-to-replicate-a-shared-mssql-2005-db-for-development-purposes/354298#354298 2 Answer by Liwen for How to replicate a shared MSSQL 2005 db for development purposes? Liwen 2008-12-09T21:31:39Z 2008-12-09T21:31:39Z <p>There are couple of ways of doing it.</p> <ol> <li><p>Use SQL Server 2005 copy function, but it would fail if SQL Agent is not ruining or there is any permission restriction - mostly like to happen with shared hosting.</p></li> <li><p>Use SQL Server backup/restore: the problem is usually you don't have access to the Database server file system with shared hosting.</p></li> <li><p>Replicate database schema on development server, then do a DTS to transfer data, you can save the DTS package ( even manually edit it if needed ) and set up a scheduled task in the development machine, it would automatically synchronize the database everyday, it may not be incrementally, depends on your database design/schema.</p></li> </ol> <p>option 3 seems to require more work but actually it is easy to set up and would save you a lot time in a long run.</p> <p>any other suggestions I would like to hear too.</p> http://stackoverflow.com/questions/326229/asp-fileupload-file-size-issue/326290#326290 0 Answer by Liwen for ASP FileUpload file size issue Liwen 2008-11-28T17:38:13Z 2008-12-04T17:18:20Z <p>I doubt there is a universal way to check file size on client-side ( I mean for all browsers ), as usually client-side script does not have access to file system.</p> <p>I used to catch the exception on server side and then notice the user when programming in classic ASP.</p> http://stackoverflow.com/questions/326233/multiple-datakeynames-in-a-gridview/326274#326274 0 Answer by Liwen for Multiple DataKeyNames in a GridView Liwen 2008-11-28T17:30:12Z 2008-11-28T17:30:12Z <p>When using the default declarative delete method, GridView will pass both values to the ObjectDataSource. </p> <p>If you really don't like the extra parameter, an alternative is to cancel the declarative method and use your own one (you can remove the unnecessary parameter there), but it requires more code.</p> http://stackoverflow.com/questions/868033/check-that-an-svn-repository-url-does-not-exist/868068#868068 Comment by Liwen on Check that an svn repository url does not exist Liwen 2009-05-16T12:38:29Z 2009-05-16T12:38:29Z As suggested in the other comment, searching for 'non-existent' might not be ideal as the error msg changes from version to version, e.g. svn 1.6.1 has changed the error msg to 'svn: No repository found in 'svn+ssh://'. However, parsing xml is not reliable as of svn 1.6.1, if the repository doesn't exsit, it WILL return an incomplete xml which is not parsable. That would make it worse. The best way I can think probably is just to check if the original repository url you sent in is in the return msg. It seems to be guranteed that it will get returned if something went wrong. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185803#185803 Comment by Liwen on What is the best comment in source code you have ever encountered? Liwen 2008-12-18T13:59:00Z 2008-12-18T13:59:00Z // Since I never heard back from the compiler, I believe this is true. http://stackoverflow.com/questions/354288/css-displayinline-property-with-list-style-image-property-on-li-tags/354337#354337 Comment by Liwen on CSS display:inline property with list-style-image: property on <li> tags Liwen 2008-12-09T22:14:38Z 2008-12-09T22:14:38Z yep, inline sometimes causes list-style-position problems, it's frustrating in IE.