User Luk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T11:14:12Zhttp://stackoverflow.com/feeds/user/5789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790457/global-asax-get-the-server-name/1790540#17905400Answer by Luk for Global ASAX - get the server nameLuk2009-11-24T14:47:14Z2009-11-24T14:54:25Z<p>I'm guessing you are on IIS 7? Because the HttpContext is available there on IIS 6.0.</p>
<p>Can you consider filling that information later on? The first call to <code>Application_BeginRequest</code> for example?</p>
http://stackoverflow.com/questions/1509241/lambda-expression-with-a-void-input4Lambda expression with a void inputLuk2009-10-02T12:31:16Z2009-10-02T12:41:23Z
<p>Ok, very silly question.</p>
<pre><code>x => x * 2
</code></pre>
<p>is a lambda representing the same thing as a delegate for </p>
<pre><code>int Foo(x) { return x * 2; }
</code></pre>
<p>But what is the lambda equivalent of</p>
<pre><code>int Bar() { return 2; }
</code></pre>
<p>??</p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1472767/msxml-fails-to-correctly-close-link-tags-during-xslt-transformation0msxml fails to correctly close <link> tags during XSLT transformationLuk2009-09-24T16:23:31Z2009-09-25T14:12:54Z
<p>Hi,</p>
<p>I'm trying to parse a RSS feed using C#, and I need to transform it with XSLT. Here's a snippet of my XSLT:</p>
<pre><code><xsl:output encoding="UTF-8" method="html" omit-xml-declaration="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="rss/channel/item" />
</xsl:template>
<xsl:template match="rss/channel/item">
<item>
<link><xsl:value-of select="normalize-space(./link)" /></link>
</item>
</xsl:template>
</code></pre>
<p>Using a <a href="http://www.corriere.it/rss/homepage.xml" rel="nofollow">random RSS (the <em>corriere della serra</em>)</a>, this renders correctly with XML Spy:</p>
<pre><code><item>
<link>http://www.corriere.it/este(...)2aabc.shtml</link>
</item>
<item>
<link>http://www.corriere.it/cron(...)22a-11de-bb1e-00144f02aabc.shtml</link>
</item>
...
</code></pre>
<p>But when using the Microsoft .net tool (either withing my code or using the Visual Studio XSLT debugger), I get:</p>
<pre><code><item>
<link>http://www.corriere.it(...)11de-aaa2-00144f02aabc.shtml
</item>
<item>
<link>http://corrieredelmezzogiorno.corriere.it/le(...)03131900.shtml
</item>
<item>
</code></pre>
<p>The <code></link></code> markup is not output at all. If I change "link" for "XXX", this works perfectly, but this is unfortunately not an option.</p>
<p>Any idea of what is happening here???</p>
http://stackoverflow.com/questions/1472767/msxml-fails-to-correctly-close-link-tags-during-xslt-transformation/1477534#14775341Answer by Luk for msxml fails to correctly close <link> tags during XSLT transformationLuk2009-09-25T14:12:54Z2009-09-25T14:12:54Z<p>Ok for those wondering, msxml doesn't close link tags while in <code>method="html"</code> mode. If you change the first line to </p>
<pre><code><xsl:output encoding="UTF-8" method="xml" omit-xml-declaration="yes"/>
</code></pre>
<p>The above code works perfectly...</p>
http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception1Automatically sanitize entries on HttpRequestValidationException Luk2009-05-05T08:55:22Z2009-09-14T15:51:54Z
<p>The infamous <code>A potentially dangerous Request.Form value was detected from the client</code> question :)</p>
<p>Here's my use case: I have a <a href="http://www.fckeditor.net/" rel="nofollow">FCKEditor</a> control on a webpage, that allows users to type HTML. That precise webpage has validation turned off to allow its use, but my masterpage has linkbuttons that can raise postbacks on other pages. </p>
<p>I obviously don't want to turn validation off needlessly on every page of my site, but I'd want to be able to sanitize the input 'silently' (either by removing the faulty field from the request form, or by validating it). </p>
<p>I see that one can override OnInit or ProcessRequest on the page, but I'd like to do that on the master page if it is possible. (I'm not even sure I can recover from a <code>HttpRequestValidationException</code>)</p>
<p>Any idea on how I could do that?</p>
<p><strong>Edit</strong>: I've been playing with Page_Error, which successfully catches the error but I can't find how to resume processing after I checked the request was in fact legit.</p>
http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1422415#14224150Answer by Luk for Automatically sanitize entries on HttpRequestValidationException Luk2009-09-14T15:51:54Z2009-09-14T15:51:54Z<p>Edit: I've been playing with Page_Error, which successfully catches the error but I can't find how to resume processing after I checked the request was in fact legit:</p>
<pre><code> protected void Page_Error(object sender, EventArgs e)
{
if (Server.GetLastError() is HttpRequestValidationException)
{
Server.ClearError();
//CreateChildControls();
base.OnPreInit(e); //yeah, ugly as hell
}
}
</code></pre>
<p>doesn't work</p>
http://stackoverflow.com/questions/1393097/get-the-current-windowsprincipal-on-a-forms-authentication-website0Get the current WindowsPrincipal on a Forms authentication websiteLuk2009-09-08T10:02:56Z2009-09-08T13:25:57Z
<p>Hi,</p>
<p>I'm coming across a peculiar request: I have a website that uses Forms Authentication, but it now needs to grab the WindowsPrincipal (Windows Authentication) at some point in order to reuse it.</p>
<p>My first instinct was to create a new page, and to disable Anonymous Access on IIS for that precise page. When I'm on that page, <code>Request.ServerVariables["LOGON_USER"]</code> gives me the current Windows login name as expected.</p>
<p>Unfortunately, <code>Context.User</code> still gives me a <code>GenericPrincipal</code>.</p>
<p>Any idea on how I could get the current WindowsPrincipal in a FormsAuthentication Application? (recreating it by asking the user for his password is not an option)</p>
http://stackoverflow.com/questions/1393097/get-the-current-windowsprincipal-on-a-forms-authentication-website/1394027#13940270Answer by Luk for Get the current WindowsPrincipal on a Forms authentication websiteLuk2009-09-08T13:25:57Z2009-09-08T13:25:57Z<p>Found it: <code>Context.Request.LogonUserIdentity</code> is what should be used in this scenario.</p>
<p>It will return the windows user that made the request if Anonymous Access is disabled on IIS (otherwise it'll return the IIS anonymous user).</p>
<p>For those interested on how to reuse it:</p>
<pre><code>lblUserName.Text = WindowsIdentity.GetCurrent().Name;
// will return the ASP.Net user (that's useless to us)
WindowsIdentity id = Context.Request.LogonUserIdentity;
WindowsImpersonationContext ctx = id.Impersonate();
try
{
lblUserName.Text = WindowsIdentity.GetCurrent().Name;
// will return the correct user
// (...) do your stuff
}
finally
{
ctx.Undo();
}
</code></pre>
http://stackoverflow.com/questions/554909/problem-sorting-rss-feed-by-date-using-xsl/1339542#13395420Answer by Luk for Problem sorting RSS feed by date using XSLLuk2009-08-27T08:00:34Z2009-08-27T08:00:34Z<p>An other way to get around the document restriction is to use the following:</p>
<pre><code><xsl:template name="getMonth">
<xsl:param name="name" />
<xsl:choose>
<xsl:when test="$name = 'Jan'">01</xsl:when>
<xsl:when test="$name = 'Feb'">02</xsl:when>
<xsl:when test="$name = 'Mar'">03</xsl:when>
<xsl:when test="$name = 'Apr'">04</xsl:when>
<xsl:when test="$name = 'May'">05</xsl:when>
<xsl:when test="$name = 'Jun'">06</xsl:when>
<xsl:when test="$name = 'Jul'">07</xsl:when>
<xsl:when test="$name = 'Aug'">08</xsl:when>
<xsl:when test="$name = 'Sep'">09</xsl:when>
<xsl:when test="$name = 'Oct'">10</xsl:when>
<xsl:when test="$name = 'Nov'">11</xsl:when>
<xsl:when test="$name = 'Dec'">12</xsl:when>
<xsl:otherwise>99</xsl:otherwise>
</xsl:choose>
</xsl:template>
</code></pre>
<p>Called using</p>
<pre><code> <xsl:call-template name="getMonth">
<xsl:with-param name="name" select="substring(./pubDate,9,3)" />
</xsl:call-template>
</code></pre>
<p>It's not pretty, but at least you don't have to worry about security</p>
http://stackoverflow.com/questions/848140/custom-sort-in-sql-server0Custom sort in SQL ServerLuk2009-05-11T13:40:33Z2009-08-26T10:53:05Z
<p>Hi,</p>
<p>I have a table where the results are sorted using an "ORDER" column, eg:</p>
<pre><code>Doc_Id Doc_Value Doc_Order
1 aaa 1
12 xxx 5
2 bbb 12
3 ccc 24
</code></pre>
<p>My issue is to initially set up this order column as efficiently and reusably as possible.</p>
<p>My initial take was to set up a scalar function that could be used as a default value when a new entry is added to the table:</p>
<pre><code>ALTER FUNCTION [dbo].[Documents_Initial_Order]
( )
RETURNS int
AS
BEGIN
RETURN (SELECT ISNULL(MAX(DOC_ORDER),0) + 1 FROM dbo.Documents)
</code></pre>
<p>When a user wants to permute 2 documents, I can then easily switch the 2 orders.</p>
<p>It works nicely, but I now have a second table I need to set up the same way, and I am quite sure there is a nicer way to do it. Any idea?</p>
http://stackoverflow.com/questions/56357/precompilation-and-startup-times-on-asp-net2Precompilation and startup times on ASP.NetLuk2008-09-11T11:53:53Z2009-06-15T15:53:20Z
<p>I am developping a (relatively small) website in ASP.Net 2.0. I am also using nAnt to perform some easy tweaking on my project before delivering executables. In its current state, the website is "precompiled" using </p>
<blockquote>
<p><code>aspnet_compiler.exe -nologo -v ${Appname} -u ${target}</code></p>
</blockquote>
<p>I have noticed that after the IIS pool is restarted (after a idle shutdown or a recycle), the application takes up to 20 seconds before it is back online (and Application_start is reached).</p>
<p>I don't have the same issue when I am debugging directly within Visual Studio (it takes 2 seconds to start) so I am wondering if the aspnet_compiler is really such a good idea.</p>
<p>I couldn't find much on MSDN. How do you compile your websites for production?</p>
http://stackoverflow.com/questions/824949/rss-atom-parsing-library-for-net2RSS/Atom parsing library for .NetLuk2009-05-05T13:52:15Z2009-05-05T14:04:39Z
<p>Hi,</p>
<p>I'm trying to find a library that can read a given RSS/Atom feed, and that can guess its format and abstract it as a list of items.</p>
<p>The idea is to build a simple RSS reader that could take any feed. </p>
<p>I know PHP has a few libraries doing just that, but I can't find any .Net version.</p>
http://stackoverflow.com/questions/823967/how-do-i-put-optional-parameters-in-methods/823977#8239770Answer by Luk for How do I put optional parameters in methods?Luk2009-05-05T09:02:30Z2009-05-05T09:02:30Z<p>You can't do that yet. I think it's a <a href="http://codebetter.com/blogs/matthew.podwysocki/archive/2008/10/28/named-and-optional-arguments-in-c-4-0.aspx111" rel="nofollow">feature of C# 4.0</a>.</p>
<p>You can use params as a work around, but that can only be used sequentially, not the way some languages treat default parameters.</p>
http://stackoverflow.com/questions/819445/bind-a-ihierarchicalenumerable-to-a-treeview-and-specify-custom-images-and-navig0Bind a IHierarchicalEnumerable to a treeview, and specify custom Images and navigation UrlsLuk2009-05-04T09:30:27Z2009-05-04T09:38:28Z
<p>Hi,</p>
<p>I have an external datasource that implements IHierarchicalEnumerable. I'm trying to use that datasource for my TreeView, but I can't find a way to specify the images and individual navigation urls the control should render (there is some business logic there).</p>
<p>The examples I have seen all assume the Url and the Name and Image fields are directly available in the datasource but this is not the case here.</p>
<p>I tried to create an other datasource as a proxy implementing these properties, but this proves to be much harder than expected (due to GetHierarchyData().GetChildren()) so I hope there is an other way.</p>
<p>Thanks for the help!</p>
http://stackoverflow.com/questions/785585/server-side-asp-net-ajax-exception-handling1Server-side ASP.Net Ajax exception handlingLuk2009-04-24T12:09:22Z2009-04-24T12:15:01Z
<p>Hi,</p>
<p>I am using ASP.net's AJAX framework and I am trying to do some exception logging on the javascript-called webservice.</p>
<p>Looking through the web, I find <a href="http://dotnetslackers.com/columns/ajax/AspNetAjaxExceptionLogging.aspx" rel="nofollow">some people</a> handling them client-side and sending them back to the server. I'd prefer not doing that since it relies on an other server call (if it failed the first time, sending an other request doesn't look like a good idea and that makes me change all my calls)</p>
<p>I see some other people <a href="http://www.eggheadcafe.com/tutorials/aspnet/af62d138-fa2f-491e-901f-d36a82f107e8/net-web-services--excep.aspx" rel="nofollow">decorating all their methods</a> with try... catch blocks (which leads to duplicate error handling, and yet an other try catch block).</p>
<p>However, I'm trying to achieve something similar to global.asax's <code>Application_Error()</code> which handles every uncaught exception (nope, it doesn't seem to be called for AJAX called methods exceptions). </p>
<p>Is that even possible?</p>
http://stackoverflow.com/questions/719778/confirming-a-user-is-the-wikipedia-user-they-say-they-are/783498#7834980Answer by Luk for Confirming a user is the Wikipedia user they say they are?Luk2009-04-23T20:58:55Z2009-04-23T20:58:55Z<p>Don't forget to check the History tab to double check they were really the one making the comment</p>
http://stackoverflow.com/questions/782254/find-the-top-10-results-from-a-table-using-castle-activerecord0Find the Top 10 results from a table using Castle ActiveRecordLuk2009-04-23T15:26:14Z2009-04-23T16:20:59Z
<p>Hi,</p>
<p>I'm trying to get say the top 10 scores for the users of my application. I'm usually using something along the lines of </p>
<pre><code>User.SlicedFindAll(0, 10,
NHibernate.Expression.Expression.Eq("IsActive", true),
NHibernate.Expression.Order.Desc("Score")
</code></pre>
<p>which is usually used for pagination purposes. However, I don't want to add any constraint (WHERE clause) to my request. Hence I tried something along the lines of</p>
<pre><code>User.SlicedFindAll(0, 10,
null,
NHibernate.Expression.Order.Desc("Score")
</code></pre>
<p>but this throws a NullReferenceException. Any pointers? (I guess SlicedFindAll is not a good choice)</p>
<p>Google didn't help on that one.</p>
http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net/780800#7808002Answer by Luk for How do I remove diacritics (accents) from a string in .NET?Luk2009-04-23T08:32:00Z2009-04-23T08:32:00Z<p>In case someone is interested, I was looking for something similar and ended writing the following:</p>
<pre><code> public static string NormalizeStringForUrl(string name)
{
String normalizedString = name.Normalize(NormalizationForm.FormD);
StringBuilder stringBuilder = new StringBuilder();
foreach (char c in normalizedString)
{
switch (CharUnicodeInfo.GetUnicodeCategory(c))
{
case UnicodeCategory.LowercaseLetter:
case UnicodeCategory.UppercaseLetter:
case UnicodeCategory.DecimalDigitNumber:
stringBuilder.Append(c);
break;
case UnicodeCategory.SpaceSeparator:
case UnicodeCategory.ConnectorPunctuation:
case UnicodeCategory.DashPunctuation:
stringBuilder.Append('_');
break;
}
}
string result = stringBuilder.ToString();
return String.Join("_", result.Split(new char[] { '_' }
, StringSplitOptions.RemoveEmptyEntries)); // remove duplicate underscores
}
</code></pre>
http://stackoverflow.com/questions/752145/use-a-custom-thousand-separator-in-c5Use a custom thousand separator in C#Luk2009-04-15T15:08:29Z2009-04-15T15:18:55Z
<p>Hi,</p>
<p>I'm trying not to use the ',' char as a thousand separator when displaying a string, but to use a space instead. I guess I need to define a custom culture, but I don't seem to get it right. Any pointers?</p>
<p>eg: display 1000000 as 1 000 000 instead of 1,000,000</p>
<p>(no, <code>String.Replace()</code> is not the solution I'd like to use :P)</p>
http://stackoverflow.com/questions/529949/redirect-all-php-traffic-to-php5-files1Redirect all .php traffic to .php5 filesLuk2009-02-09T21:04:28Z2009-04-02T19:02:33Z
<p>Hi,</p>
<p>I have a personal website with a MediaWiki installation on a shared host. The Apache configuration treats all .php request with PHP 4, and all .php5 requests with PHP5.</p>
<p>For compatibility reasons I need to be able to use the .php extension, but MediaWiki is only available on PHP5. I tried to use the mod_rewrite engine, but I'm stuck with the rule.</p>
<p>Here's the current file:</p>
<pre><code>DirectoryIndex index.php5
RewriteEngine on
# This rewrites URIs in the form /pages/Article_Name to /index.php5?title=Article_Name.
RewriteCond %{REQUEST_URI} !^/pages/index.php5.*$ [NC]
RewriteRule ^pages/?(.*)$ /index.php5?title=$1 [L]
# This is the broken rule
RewriteCond %{REQUEST_URI} ^index\.php(([^5])(.*))?$ [NC]
RewriteRule ^index\.php(([^5])(.*))?$ /index.php5?$1 [L]
</code></pre>
<p>The idea of the rule was "Redirect all content from index.php (not followed by '5') to index.php5".</p>
<p>Any idea?</p>
<p><hr /></p>
<p>Edit: </p>
<pre><code>SetEnv PHP_VER 5
</code></pre>
<p>works, but I'm still interested on why the rule was not taken into account.</p>
http://stackoverflow.com/questions/348201/custom-numeric-format-string-to-always-display-the-sign/556853#5568533Answer by Luk for Custom numeric format string to always display the signLuk2009-02-17T13:46:03Z2009-02-17T13:46:03Z<p>Beware, when using conditional formatting the negative value doesn't automatically get a sign. You need to do </p>
<pre><code>string MyString = number.ToString("+#;-#;0");
</code></pre>
http://stackoverflow.com/questions/442503/bind-a-column-default-value-to-a-function-in-sql-20050Bind a column default value to a function in SQL 2005Luk2009-01-14T10:13:12Z2009-01-14T10:58:28Z
<p>I have a column containing items that can be sorted by the user:</p>
<pre><code>DOC_ID DOC_Order DOC_Name
1 1 aaa
2 3 bbb
3 2 ccc
</code></pre>
<p>I'm trying to figure out a way to properly initialize DOC_Order when the entry is created. A good value would either be the corresponding DO-CID (since it is autoassigned), or MAX(DOC-ORDER) + 1</p>
<p>After a bit of googling I saw it was possible to assign a scalar function's return to the default column. </p>
<pre><code>CREATE FUNCTION [dbo].[NEWDOC_Order]
(
)
RETURNS int
AS
BEGIN
RETURN (SELECT MAX(DOC_ORDER) + 1 FROM DOC_Documents)
END
</code></pre>
<p>But each of my tries using MS SQL Management studio ended in a "Error validating the default for column 'DOC_Order'" message.</p>
<p>Any idea of what the exact SQL syntax to assign a function to DEFAULT is?</p>
http://stackoverflow.com/questions/442503/bind-a-column-default-value-to-a-function-in-sql-2005/442591#4425910Answer by Luk for Bind a column default value to a function in SQL 2005Luk2009-01-14T10:58:28Z2009-01-14T10:58:28Z<p>IF someone wants to do it using the interface, typing </p>
<pre><code>[dbo].[NEWDOC_Order]()
</code></pre>
<p>does the trick. You apparently need all brackets or it will reject your input.</p>
http://stackoverflow.com/questions/369291/how-to-effectively-authenticate-the-user-calling-a-webservice0How to effectively authenticate the user calling a webservice?Luk2008-12-15T18:34:59Z2008-12-15T19:49:31Z
<p>Hi,</p>
<p>In a multi-server environment, users will be able to use a page to put, update or delete files on the servers. I was considering using a webservice (on each server) called by the IIS thread to do that work (with an aspx management page).</p>
<p>However, for obvious reasons, I don't really want anyone to be able to call that webservice (by POSTing a well-formed request from their machines).</p>
<p>I am wondering what would be the most effective (in terms of complexity, scalability) way to ensure that the access to the webservice is restricted to my page (token? Sending the current user's Principal? I don't have access to their password so sending the login/password couple is out of the question)</p>
http://stackoverflow.com/questions/325501/castle-active-records-how-do-you-count-objects1Castle/ Active Records: How do you count objects?Luk2008-11-28T11:04:27Z2008-12-01T14:04:12Z
<p>Hi,</p>
<p>I'm trying to do a simple "Select Count(*) from PRODUCTS where date > xxx" with Castle on NHibernate.</p>
<p>If I was directly using NHibernate, I could reuse <a href="http://stackoverflow.com/questions/116188/how-do-i-select-the-count-of-an-nhibernate-subquerys-results">this question</a> answers but unfortunately I see no easy way to access the Current NHibernate session from Castle Records.</p>
<p>I obviously don't want to retrieve all my objects and do a Count on the C# side ;). I only need to know how many objects there are.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/330904/confirmation-dialogue/330910#3309103Answer by Luk for Confirmation DialogueLuk2008-12-01T13:54:46Z2008-12-01T13:54:46Z<p>If you know whether or not they have the rights when first executing the page, you can have the button return a javascript alert "You can't do that" instead of having it runing the server-side script.</p>
<p>That way the button is still enabled, but you don't do any unnecessary call to the server.</p>
http://stackoverflow.com/questions/299287/best-way-to-print-invoices-pick-tickets-etc/299376#2993761Answer by Luk for Best way to print Invoices, Pick Tickets etc...Luk2008-11-18T16:59:27Z2008-11-18T16:59:27Z<p>I'm personally using <a href="http://www.aspose.com/categories/file-format-components/aspose.words-for-.net-and-java/default.aspx" rel="nofollow">Aspose Words</a>: they use word documents as templates, and I'm using Words bookmarks function to mark and retrieve the fields I need to fill.</p>
<p>Aspose works nicely with Tables (ie: you can add lines to a table, etc...) and sees Word documents as XML documents. You can then save the document as MSWord or PDF.</p>
<p>I wouldn't say it's the greatest library in the world, but it's definitely worth having a look :)</p>
http://stackoverflow.com/questions/289537/a-cool-algorithm-to-check-a-sudoku-field/289561#2895614Answer by Luk for A cool algorithm to check a Sudoku field?Luk2008-11-14T09:07:01Z2008-11-14T09:07:01Z<p>Just a thought: don't you need to also check the numbers in each 3x3 square? </p>
<p>I'm trying to figure out if it is possible to have the rows and columns conditions satisfied without having a correct sudoku</p>
http://stackoverflow.com/questions/289452/failed-to-resolve-ip/289556#2895561Answer by Luk for Failed to resolve IPLuk2008-11-14T09:02:04Z2008-11-14T09:02:04Z<p>You need to set up the proxy:</p>
<p>here's a snippet that should set it up for all the following calls:</p>
<pre><code> protected void SetupProxy(string proxyUrl, string proxyLogin, string proxyPassword, string[] proxyBypass)
{
WebProxy proxy = new WebProxy(proxyUrl);
proxy.Credentials = new NetworkCredential(proxyLogin, proxyPassword);
proxy.BypassList = proxyBypass;
proxy.BypassProxyOnLocal = true;
WebRequest.DefaultWebProxy = proxy;
}
</code></pre>
http://stackoverflow.com/questions/281144/asp-net-mvc-framework-and-databinding0ASP.Net MVC framework and databindingLuk2008-11-11T15:07:11Z2008-11-11T16:04:12Z
<p>Hi,</p>
<p>I am having some trouble grasping some concepts behind the MVC framework. I am doing a very simple application which categorizes products.</p>
<p>The Creation screen will simply use a dropdown list showing the list of categories, the name of the product and submit.</p>
<p>On a normal .Net app, I would databind a server dropdownlist in the Page_Load, but in a MVC app, what is the best way to retrieve my categories from the database and add them to the dropdown list?</p>
<p>(Sorry, my question is extremely noobish but unfortunately resources are spare on MVC, and examples are often broken due to early changes)</p>
http://stackoverflow.com/questions/1790457/global-asax-get-the-server-name/1790540#1790540Comment by Luk on Global ASAX - get the server nameLuk2009-11-24T15:34:34Z2009-11-24T15:34:34Z@Downvoter: where am I wrong? I'm pretty sure you can't access it before BeginRequest in IIS7http://stackoverflow.com/questions/1790457/global-asax-get-the-server-name/1790463#1790463Comment by Luk on Global ASAX - get the server nameLuk2009-11-24T15:33:59Z2009-11-24T15:33:59ZThat's what I meant sorry ^^http://stackoverflow.com/questions/1790457/global-asax-get-the-server-name/1790463#1790463Comment by Luk on Global ASAX - get the server nameLuk2009-11-24T14:42:47Z2009-11-24T14:42:47ZI don't think there is a HttpContext in Application_Starthttp://stackoverflow.com/questions/1509241/lambda-expression-with-a-void-input/1509257#1509257Comment by Luk on Lambda expression with a void inputLuk2009-10-02T12:37:15Z2009-10-02T12:37:15ZDamn, that was fast :) Thanks everyone!http://stackoverflow.com/questions/1472767/msxml-fails-to-correctly-close-link-tags-during-xslt-transformationComment by Luk on msxml fails to correctly close <link> tags during XSLT transformationLuk2009-09-24T22:29:43Z2009-09-24T22:29:43ZThat's what's weird. Using the XSLT debugger shipped with Visual Studio outside of any code, I still get that output.http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1421060#1421060Comment by Luk on Automatically sanitize entries on HttpRequestValidationException Luk2009-09-14T15:52:05Z2009-09-14T15:52:05ZYes unfortunatelyhttp://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1393730#1393730Comment by Luk on Automatically sanitize entries on HttpRequestValidationException Luk2009-09-14T15:04:55Z2009-09-14T15:04:55ZSounds a very good plan, but in that case the page is not processed (apparently): I end up with a blank pagehttp://stackoverflow.com/questions/1393097/get-the-current-windowsprincipal-on-a-forms-authentication-website/1393126#1393126Comment by Luk on Get the current WindowsPrincipal on a Forms authentication websiteLuk2009-09-08T13:22:42Z2009-09-08T13:22:42ZIn fact, that will return ASP.Net's windows user (but you were on the right track)http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1393051#1393051Comment by Luk on Automatically sanitize entries on HttpRequestValidationException Luk2009-09-08T09:55:03Z2009-09-08T09:55:03ZUnfortunately, once I'm in Application_Error, there's no way back: the request has failed and I won't be able to recover. (Unless I am mistaken)http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1393016#1393016Comment by Luk on Automatically sanitize entries on HttpRequestValidationException Luk2009-09-08T09:53:42Z2009-09-08T09:53:42ZUnfortunately this is not really an option without rewriting the whole application :)http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net/780800#780800Comment by Luk on How do I remove diacritics (accents) from a string in .NET?Luk2009-09-08T09:14:07Z2009-09-08T09:14:07Z2 really good points, I'll rewrite it if I ever get the time to go back to this portion of code :)http://stackoverflow.com/questions/848140/custom-sort-in-sql-server/1333853#1333853Comment by Luk on Custom sort in SQL ServerLuk2009-08-27T08:02:55Z2009-08-27T08:02:55ZHi DoYouKnow.IN. You should probably start your own question, that'll be easier for someone to answer you that way.http://stackoverflow.com/questions/848140/custom-sort-in-sql-server/848233#848233Comment by Luk on Custom sort in SQL ServerLuk2009-08-27T08:02:16Z2009-08-27T08:02:16Z(The solution I used in the end is pretty much that one)http://stackoverflow.com/questions/848140/custom-sort-in-sql-server/848196#848196Comment by Luk on Custom sort in SQL ServerLuk2009-05-11T13:56:23Z2009-05-11T13:56:23ZGood point, but I then need the user to be able to tweak the order (to permute 2 documents). If I'm using an identity, this will be painful to do.http://stackoverflow.com/questions/848140/custom-sort-in-sql-server/848182#848182Comment by Luk on Custom sort in SQL ServerLuk2009-05-11T13:55:55Z2009-05-11T13:55:55ZGood point, but I then need the user to be able to tweak the order (to permute 2 documents). If I'm using an identity, this will be painful to do.