User x0n - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T14:19:57Zhttp://stackoverflow.com/feeds/user/6920http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804948/asp-net-3-5-properties-private-member-access-within-class/1805105#18051050Answer by x0n for ASP.NET 3.5 properties' private member access within classx0n2009-11-26T18:30:59Z2009-11-26T18:30:59Z<p>You always need to declare both the getter and the setter with c# 3.0 automatic properties - see the other answers - the trick is to mark the setter as private. </p>
<pre><code>public Foo { get; private set; }
</code></pre>
http://stackoverflow.com/questions/1804867/refresh-restart-vistas-graphical-login-screen-using-jscript-wsh/1805087#18050870Answer by x0n for Refresh/Restart Vista's graphical login screen using JScript (WSH)x0n2009-11-26T18:26:46Z2009-11-26T18:26:46Z<p>Anything you do from the service's context will not affect it as the login screen is an entirely different session/desktop. This is a security feature designed to stop user programs from emulating the login screen to capture a password. CTRL+ALT+DEL will always bring you to this alternate desktop/session. </p>
<p>The screensaver you are starting is not the same one you see start on the login screen. With that in mind, you should be able to configure the screensaver for the system account's profile to have a very short wait time. You can probably learn what you need to know from this article:</p>
<p><a href="http://blogs.technet.com/heyscriptingguy/archive/2006/03/08/how-can-i-configure-the-screensaver-used-when-no-one-is-logged-on-to-a-computer.aspx" rel="nofollow">http://blogs.technet.com/heyscriptingguy/archive/2006/03/08/how-can-i-configure-the-screensaver-used-when-no-one-is-logged-on-to-a-computer.aspx</a></p>
<p>Hope this helps,</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/987607/c-flags-enum-generic-function-to-look-for-a-flag/1805053#18050530Answer by x0n for C#, Flags Enum, Generic function to look for a flag.x0n2009-11-26T18:16:40Z2009-11-26T18:16:40Z<p>Question long over, but here's one for reference anyway:</p>
<pre><code> public static bool HasFlag<TEnum>(this TEnum enumeratedType, TEnum value)
where TEnum : struct, IComparable, IFormattable, IConvertible
{
if (!(enumeratedType is Enum))
{
throw new InvalidOperationException("Struct is not an Enum.");
}
if (typeof(TEnum).GetCustomAttributes(
typeof(FlagsAttribute), false).Length == 0)
{
throw new InvalidOperationException("Enum must use [Flags].");
}
long enumValue = enumeratedType.ToInt64(CultureInfo.InvariantCulture);
long flagValue = value.ToInt64(CultureInfo.InvariantCulture);
if ((enumValue & flagValue) == flagValue)
{
return true;
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/1797526/how-to-determine-if-a-publishing-page-in-sharepoint-2007-is-actually-published/1799943#17999431Answer by x0n for How to determine if a Publishing Page in Sharepoint 2007 is actually publishedx0n2009-11-25T21:05:44Z2009-11-25T21:05:44Z<p>See:</p>
<ul>
<li>Microsoft.SharePoint.Publishing.PublishingPage.IsPublishingPage(listItem)</li>
<li>Microsoft.SharePoint.Publishing.PublishingPage.GetPublishingPage(listItem)</li>
</ul>
<p>and:</p>
<ul>
<li>(pageinstance).ListItem.File.Level (should be "Published")</li>
<li>(pageinstance).ListItem.File.ModerationInformation.Status (should be "Approved")</li>
</ul>
<p>update:</p>
<p>Most publishing webs are configured to use moderation, but yours may not so you might not have to check for approval.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1737149/limit-the-number-of-available-visible-content-types-in-document-libraries/1738698#17386980Answer by x0n for Limit the number of available/visible Content Types in document libraries x0n2009-11-15T20:23:37Z2009-11-15T20:23:37Z<p>A possible approach would be to use folders within your document library. Each folder can have different associated content types - meaning when inside this subfolder, the New Item menu shows only those associated CTs. You can still view the entire document library as a flat container if you wish by configuring a view to do this. Users could choose which folder (possibly named after the category of CTs you wish to group there)</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1732198/detect-page-is-loaded-into-sharepoint-designer/1735546#17355460Answer by x0n for Detect page is loaded into Sharepoint Designerx0n2009-11-14T20:48:41Z2009-11-14T20:48:41Z<p>Assuming WSS 3.0 / MOSS 2007, Yes:</p>
<pre><code>SPContext.Current.IsRemoteAuthoringTime
</code></pre>
<p>or, depending on your context,</p>
<pre><code>SPContext.Current.IsDesigntime
</code></pre>
<p>Update: A cruder way might be to peek at the HttpRequest headers - I'm sure SPD sents a header.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1727828/start-a-program-in-active-user-session-with-powershell-remoting/1732491#17324911Answer by x0n for Start a program in active user session with PowerShell remotingx0n2009-11-13T23:15:32Z2009-11-13T23:15:32Z<p>Powershell cannot do this, but microsoft's (previously sysinternal's) tool PSEXEC can do this. Take a look at the -i parameter:</p>
<pre><code> -i Run the program so that it interacts with the desktop of the
specified session on the remote system. If no session is
specified the process runs in the console session.
</code></pre>
http://stackoverflow.com/questions/1725767/start-job-vs-invoke-command-asjob/1726074#17260741Answer by x0n for Start-job vs. Invoke-command -asjobx0n2009-11-12T23:15:19Z2009-11-12T23:15:19Z<p>The first example using start-job does not use HTTP for the call and instead uses an IPC channel with WinRM to run; it does not require administrative privileges this way. The second example with invoke-command does require admin rights (by default) and will connect via HTTP and WinRM. </p>
<p>To be honest, I would have expected the second one to fail for most people. If you run: Receive-Job against the ID of the start-job invocation, do you get any error messages?</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1722702/how-to-open-the-last-opened-files-in-ise-at-the-starting/1726050#17260501Answer by x0n for how to open the last opened files in ISE at the startingx0n2009-11-12T23:10:30Z2009-11-12T23:10:30Z<p>I tried to do this a few months ago and discovered that a race-condition prevents this from working 95% of the time. The tab collection in ISE's object model is generally disposed of before the powershell.exiting event is handled. Dumb, yes. Fixable, no.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1686805/sharepoint-portal-to-activex-to-webclient-back-to-sharepoint/1697549#16975490Answer by x0n for Sharepoint portal to ActiveX to WebClient back to Sharepointx0n2009-11-08T19:05:26Z2009-11-08T19:05:26Z<p>It depends on the authentication mechanism used - if the user logs into the page with NTLM (windows integrated), then the WebClient cannot reuse the credentials. If it's kerberos-based, you have a better chance.</p>
http://stackoverflow.com/questions/1694552/prevent-concurrent-editing-of-a-list-item/1694780#16947800Answer by x0n for Prevent Concurrent Editing of a List Itemx0n2009-11-07T23:17:01Z2009-11-07T23:17:01Z<p>Not possible - checkin/checkout is only supported for list items with an associated SPFile object (images, pages, documents - essentially everything that derives from SPDocumentLibrary)</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1655866/cannot-run-32bit-compiled-wpf-applications-on-windows-7-64bit/1655887#16558870Answer by x0n for Cannot run 32bit compiled WPF applications on Windows 7 64bitx0n2009-10-31T23:15:03Z2009-10-31T23:15:03Z<p>Try forcing Windows to always use the 32bit CLR and see if it still crashes:</p>
<p>C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Ldr64.exe setwow</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1652001/ubiquitous-way-to-get-the-root-directory-an-application-is-running-in-via-c/1652008#16520087Answer by x0n for Ubiquitous way to get the root directory an application is running in via C#x0n2009-10-30T20:04:34Z2009-10-30T20:04:34Z<p>Easiest is probably:</p>
<pre><code>System.Reflection.Assembly.GetExecutingAssembly().Location
</code></pre>
<p>Hope this helps,</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1651816/how-do-i-set-minumum-password-requirements-in-umbraco-for-the-membership-provider/1651993#16519931Answer by x0n for How do I set minumum password requirements in Umbraco for the membership provider?x0n2009-10-30T20:00:32Z2009-10-30T20:00:32Z<p>Typically custom membership provider settings are passed as custom xml attributes on the tag itself. You can see one there already: "userIsOnlineTimeWindow." Fire up Reflector and have a dig around the Assembly containing that provider, or praise-jeebus, RTFM. :D</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1651827/moving-active-jobs-in-a-shell-from-the-background-to-foreground-and-the-other-way/1651982#16519820Answer by x0n for Moving Active jobs in a Shell from the Background to Foreground and the Other Way Aroundx0n2009-10-30T19:58:41Z2009-10-30T19:58:41Z<p>I don't mean to be a smart ass, but have you tried looking in:</p>
<p><a href="http://ftp.gnu.org/pub/gnu/bash/bash-4.0.tar.gz" rel="nofollow">http://ftp.gnu.org/pub/gnu/bash/bash-4.0.tar.gz</a></p>
<p>;-)</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1640244/can-monodevelop-2-2b2-running-on-windows-use-the-microsoft-compilers/1640287#16402870Answer by x0n for Can MonoDevelop (2.2b2) running on Windows use the Microsoft compilers?x0n2009-10-28T21:39:00Z2009-10-28T21:39:00Z<p>Isn't MonoDevelop a subset of Visual Studio Express? Why not use the free express versions?</p>
http://stackoverflow.com/questions/1637999/com-interface-wrappers-in-powershell/1640264#16402641Answer by x0n for COM interface wrappers in PowerShell?x0n2009-10-28T21:35:38Z2009-10-28T21:35:38Z<p>PowerShell special-cases COM objects with its own late-binding "COM Adapter" in order to expose members to callers (and the get-member cmdlet.) Unfortunately this sometimes fails if it cannot find the associated TypeLib, which usually happens when the instance is actually a remote COM object surfaced through a transparentproxy type. </p>
<p>Another side-effect of this COM adaptation is that you are indirectly prevented from using these kind of casts to gain access to members. PowerShell generally exposes the interop assembly's (dynamically created or PIA) CoClass class, which includes members of all interfaces. In fact, this limitation on interfaces is not just with COM objects: the ".NET Adapter" in powershell doesn't deal with plain old .NET interfaces either. To be honest, this is the preferred behaviour for 99% of cases. PowerShell is a dynamic language, and will always expose the true type of a reference at runtime. Any attempts to cast to an interface will be ignored.</p>
<p>This leads to more problems when you get to explicitly implemented interfaces in C#. PowerShell can't see them at all! I did blog about a technique to proxy explicit interface members using a v2.0 module. You could try it against a COM interface but I'm not sure it would work. </p>
<p><a href="http://www.nivot.org/2009/03/28/PowerShell20CTP3ModulesInPracticeClosures.aspx" rel="nofollow">http://www.nivot.org/2009/03/28/PowerShell20CTP3ModulesInPracticeClosures.aspx</a></p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1631650/is-httpcontext-current-ever-null-in-a-web-application/1631899#16318991Answer by x0n for Is HttpContext.Current Ever Null in a Web Application?x0n2009-10-27T16:08:28Z2009-10-27T16:08:28Z<p>There were some interesting changes in IIS 7 with respect to this. In IIS6, you had a HttpContext in Application_Start. From IIS7 onwards this is no longer the case. </p>
<p>More Information:</p>
<p><a href="http://blogs.msdn.com/webtopics/archive/2009/02/12/webbaseevent-raise-method-fails-in-application-start-event-with-a-nullreferenceexception-on-iis-7-0.aspx" rel="nofollow">http://blogs.msdn.com/webtopics/archive/2009/02/12/webbaseevent-raise-method-fails-in-application-start-event-with-a-nullreferenceexception-on-iis-7-0.aspx</a></p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1614714/routing-classic-asp-requests-to-net-seo-redirects/1614817#16148171Answer by x0n for Routing Classic ASP Requests To .NET - SEO Redirectsx0n2009-10-23T17:18:42Z2009-10-23T17:18:42Z<p>The simplest thing is to use a custom 404 error page at the IIS level. This page can be any ASPX page; you have access to the original request via the HttpContext. </p>
<p>In IIS 6.0, you'll notice that by default URLs mapped to the .NET engine (.aspx,,asmx etc) use their own 404 handler defined in web.config. No matter; you can cause even those pages to be sent to the IIS 404 page if you edit the ASPX engine mapping and ensure that the tickbox for "file must exist" is set. This redirects all boken links to the IIS 404 handler, even if they are mapped to .NET handlers. People make the mistake of trying to redirect all broken links to the web.config defined 404handler; it's must easier if you just force all to go to the IIS defined one instread.</p>
http://stackoverflow.com/questions/1585900/searchlistitems-returns-0-results-but-sharepoint-search-returns-5-pages-of-resul/1585916#15859162Answer by x0n for SearchListItems returns 0 results, but SharePoint search returns 5 pages of resultsx0n2009-10-18T20:14:57Z2009-10-18T20:14:57Z<p>Does the account you're running the code as have access to the list items? Perhaps they're being removed by the security trimmer.</p>
<p>If that's not it, the other possibility is that you have not enabled FullText search in Central Administration.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1585815/having-problems-getting-divs-to-line-up-properly/1585909#15859091Answer by x0n for Having problems getting divs to line up properly.x0n2009-10-18T20:13:34Z2009-10-18T20:13:34Z<p>DIVs are "block" elements by default. If you want inline behaviour, use the style element "display: inline"</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1580732/how-to-scrape-the-contents-of-an-axd-resource/1580823#15808232Answer by x0n for How to scrape the contents of an axd resource?x0n2009-10-16T23:02:26Z2009-10-16T23:02:26Z<p>Yes, you have to create another webrequest. Any given HTML page consists of multiple http requests; one for the html page, then another for each external SRC. No getting away from it.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1567244#15672443Answer by x0n for Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 scriptx0n2009-10-14T15:54:17Z2009-10-14T15:54:17Z<p>I just blogged how to do this:</p>
<p><a href="http://www.nivot.org/2009/10/14/PowerShell20GettingAndSettingTextToAndFromTheClipboard.aspx" rel="nofollow">http://www.nivot.org/2009/10/14/PowerShell20GettingAndSettingTextToAndFromTheClipboard.aspx</a></p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1563182/asp-net-login-control-authentication-https-ssl-cookie-path/1563213#15632132Answer by x0n for ASP.NET, login control, authentication, https/ssl, cookie pathx0n2009-10-13T22:05:53Z2009-10-13T22:05:53Z<p>The cookie path is case-sensitive:</p>
<p><a href="http://support.microsoft.com/kb/313116" rel="nofollow">http://support.microsoft.com/kb/313116</a></p>
<p>it is also normalized to lower case.</p>
http://stackoverflow.com/questions/1563119/how-not-to-hard-code-connection-stringin-all-pages/1563185#15631851Answer by x0n for how not to hard code connection stringin all pagesx0n2009-10-13T22:02:55Z2009-10-13T22:02:55Z<p><strong>How to: Read Connection Strings from the Web.config File</strong></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178411.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178411.aspx</a></p>
http://stackoverflow.com/questions/1561434/turn-on-assert-in-asp-net/1561455#15614551Answer by x0n for turn on assert in asp.netx0n2009-10-13T16:42:23Z2009-10-13T16:42:23Z<p>I believe you probably lack this:</p>
<pre><code><system.diagnostics>
<assert assertuienabled="true" />
</system.diagnostics>
</code></pre>
<p>in your web.config.</p>
http://stackoverflow.com/questions/1560983/writing-data-to-cells-in-excel-2007-powershell/1561319#15613192Answer by x0n for Writing data to cells in Excel 2007 / PowerShellx0n2009-10-13T16:18:05Z2009-10-13T16:18:05Z<p>I cannot reproduce this. Your former example works perfectly for me. I verified by setting $Excel.Visible = $true and I can see "Test" in cell(1,1).</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1555390/can-i-rewrite-from-subdomain-to-folder-avoiding-redirection/1555420#15554200Answer by x0n for Can I rewrite from subdomain to folder avoiding redirection?x0n2009-10-12T16:03:57Z2009-10-12T16:03:57Z<p>Yes, this is exactly the purpose of tools like ISAPI_REWRITE. My hosting company (orcsweb) uses exactly this technique.</p>
<p>-OIsin</p>
http://stackoverflow.com/questions/1555376/asp-net-vs-sharepoint/1555411#15554112Answer by x0n for ASP.NET vs SharePointx0n2009-10-12T16:02:29Z2009-10-12T16:02:29Z<p>As someone who's been on the sharepoint train for a few years now, I'd say you'd be crazy NOT to take the opportunity. SharePoint is firmly based on asp.net and there is plenty of crossover. In fact, ASP.NET 2.0 design was large driven by the needs of WSS 3.0 - namely webparts and the system.web.hosting virtualization aspects. You will feel extremely comfortable when developing. Go for it.</p>
<p>-Oisin </p>
http://stackoverflow.com/questions/1551637/how-to-create-a-performance-counter-and-see-it-in-powershell/1551706#15517061Answer by x0n for How to create a performance counter and see it in PowerShell?x0n2009-10-11T20:37:28Z2009-10-11T20:37:28Z<p>I'm guessing that you want to add your own performance counters to your application and have them show up in powershell. Take a look at:</p>
<p><a href="http://www.codeplex.com/PerfmonCounterHelper" rel="nofollow">http://www.codeplex.com/PerfmonCounterHelper</a></p>
<p>It allows you to easily add performance counters to your application, which will automatically show up in powershell's get-counter cmdlet.</p>
<p>-Oisin</p>
http://stackoverflow.com/questions/1804948/asp-net-3-5-properties-private-member-access-within-classComment by x0n on ASP.NET 3.5 properties' private member access within classx0n2009-11-26T18:30:02Z2009-11-26T18:30:02Zyou always need to declare both the getter and the setter with c# 3.0 automatic properties - see answers below - the trick is to mark the setter as privte.http://stackoverflow.com/questions/1724963/powershell-copy-item-what-im-doing-wrongComment by x0n on PowerShell Copy-Item what I'm doing wrong?x0n2009-11-12T23:16:28Z2009-11-12T23:16:28ZYou can avoid these kinds of problems by using Set-StrictMode cmdlet at the start of your script. It will not let you use any variables you have not declared (it would have caught this error).http://stackoverflow.com/questions/1694552/prevent-concurrent-editing-of-a-list-itemComment by x0n on Prevent Concurrent Editing of a List Itemx0n2009-11-08T19:02:26Z2009-11-08T19:02:26ZMondo, do you have MOSS enterprise? You could also knock up an infopath form to replace the custom list's webform. Of course, you'd have to use a content type then (but that's always good practice). With infopath you'll have more options; calling out to a list in the root of the site collection containing "locks" for example and displaying a message inline. http://stackoverflow.com/questions/1651955/os-x-quick-look-stopped-workingComment by x0n on OS X 'Quick Look' stopped workingx0n2009-10-30T19:56:58Z2009-10-30T19:56:58Z...or installing Windows 7http://stackoverflow.com/questions/1607986/sharepoint-2007-possible-to-change-document-library-folder-permissions-inside-aComment by x0n on Sharepoint 2007: Possible to change document library folder permissions inside a workflow?x0n2009-10-22T21:03:21Z2009-10-22T21:03:21ZWhat sort of workflow, SharePoint designer or Visual Studio built?http://stackoverflow.com/questions/1585900/searchlistitems-returns-0-results-but-sharepoint-search-returns-5-pages-of-resul/1585916#1585916Comment by x0n on SearchListItems returns 0 results, but SharePoint search returns 5 pages of resultsx0n2009-10-18T20:52:50Z2009-10-18T20:52:50Zoperations > services on serverhttp://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1573295#1573295Comment by x0n on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 scriptx0n2009-10-16T22:58:55Z2009-10-16T22:58:55ZHeh, ever escalating techniques. Ok, my next post will be a multi-format clipboard module with no temp files that can handle more than just text.http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1567244#1567244Comment by x0n on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 scriptx0n2009-10-14T19:33:12Z2009-10-14T19:33:12ZI just updated my blog post to use a temp file - this avoids your problem. No limit now for text size.http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1567244#1567244Comment by x0n on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 scriptx0n2009-10-14T19:18:04Z2009-10-14T19:18:04Zalternatively, you could modify my functions to read/write from a temporary file.http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1567244#1567244Comment by x0n on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 scriptx0n2009-10-14T19:17:31Z2009-10-14T19:17:31Zouch. well I guess stick with a binary cmdlet, or by starting powershell.exe itself with the -STA flag and using the clipboard methods directly (or use ISE which is in STA mode by default)http://stackoverflow.com/questions/1543578/how-to-build-a-wpf-application-with-add-type-c-code/1543759#1543759Comment by x0n on How to build a WPF application with Add-Type C# code x0n2009-10-09T16:06:27Z2009-10-09T16:06:27Zps> get-help add-type -parameter usingnamespace
This will tell you that that parameter belongs to the parameterset when using MemberDefinition (typically for quick p/invoke imports) rather than your case, TypeDefinition (full c# programs)http://stackoverflow.com/questions/1531846/moving-sharepoint-project-dlls-from-gac-to-bin/1532073#1532073Comment by x0n on Moving Sharepoint project Dlls from GAC to Binx0n2009-10-08T16:59:01Z2009-10-08T16:59:01Z@alex: sorry - the limitation is on strongly-named assemblies, not only those in the GAC (when I hear strong-named, I think "in the gac."); if your assembly in the bin has a strong-name, it demands full-trust callers unless marked with this attribute. You are still not quite right though; fulltrust assemblies (like sharepoint's) can call into partial-trust strong-named assemblies in the bin. It's just that non-fulltrust assemblies cannot (e.g. other assemblies in the bin or perhaps in ISAPI etc)http://stackoverflow.com/questions/1531846/moving-sharepoint-project-dlls-from-gac-to-bin/1532073#1532073Comment by x0n on Moving Sharepoint project Dlls from GAC to Binx0n2009-10-08T13:00:28Z2009-10-08T13:00:28ZYou have this backwards Alex. the APTC attribute is placed on an assembly destined for the GAC, so partially trusted assemblies (i.e. thse in the bin) may call them. In this case, the SharePoint assemblies are in the GAC and already marked with APTC where appropriate. Assemblies in the BIN have no need for this attribute (as long as the BIN is not fulltrust).http://stackoverflow.com/questions/1514173/c-net-method-for-converting-character-codes-to-equivalent-chars/1514184#1514184Comment by x0n on C#/.NET - Method for converting character codes to equivalent charsx0n2009-10-08T12:47:28Z2009-10-08T12:47:28Zlol! that would explain it - well I learned something too. I didnt know there were some system.web.* types defined OUTSIDE of system.web assembly. :)http://stackoverflow.com/questions/1514173/c-net-method-for-converting-character-codes-to-equivalent-chars/1514184#1514184Comment by x0n on C#/.NET - Method for converting character codes to equivalent charsx0n2009-10-06T15:15:49Z2009-10-06T15:15:49ZIf you only have 3 classes in system.web, something is very very wrong.