User Hojou - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:05:56Zhttp://stackoverflow.com/feeds/user/11619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel14Rebinding events in jQuery after Ajax update (updatepanel)Hojou2008-11-19T10:26:44Z2009-12-17T12:28:17Z
<p>I have several input and option elements on my page, each (well almost) have an event attached to update some text on the page once they change. I use jQuery which is really really cool :) </p>
<p>I also use Microsofts <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29" rel="nofollow">Ajax</a> framework, utilizing the UpdatePanel. The reason why I do that is that certain elements are created on the page based on some server-side logic. I don't really want to explain why I use the UpdatePanel - even if it could (it can with quite some effort) be rewritten to use only <a href="http://en.wikipedia.org/wiki/JQuery" rel="nofollow">jQuery</a> I still want that UpdatePanel.</p>
<p>You probably guessed it - once I have a postback on the UpdatePanel the jQuery events stops working. I actually was expecting this, since the "postback" is not really a new postback so my code in document.ready that binds the events won't be fired again. I also confirmed my suspicion by reading up on it in the jQuery help libraries.</p>
<p>Anyway I'm left with the problem of rebinding my controls after the UpdatePanel is done updating the <a href="http://en.wikipedia.org/wiki/Document%5FObject%5FModel" rel="nofollow">DOM</a>. I preferably need a solution that does not require adding more .js files (jQuery plug-ins) to the page but something as simple as being able to catch the UpdatePanel's 'afterupdating' where I can just call my method to rebind all the form elements.</p>
http://stackoverflow.com/questions/348880/getting-week-number-off-a-date-in-ms-sql-server-20051Getting week number off a date in MS SQL Server 2005?Hojou2008-12-08T07:55:34Z2009-12-08T04:03:47Z
<p>Is it possible to create an sql statement that selects the week number (NOT the day of week - or the day number in a week). I'm creating a view to select this extra information along with a couple of other fields and thus can not use a stored procedure. I'm aware that it's possible to create a UDF to do the trick, but if at all possible i'd rather only have to add a view to this database, than both a view and a function.</p>
<p>Any ideas? Also where i come from, the week starts monday and week 1 is the first week of the year with atleast 4 days.</p>
<h3>Related:</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/274861/how-do-i-calculate-the-week-number-given-a-date">How do I calculate the week number given a date?</a></p>
</blockquote>
http://stackoverflow.com/questions/1694468/linq-to-sql-dynamic-sort-question/1694479#16944791Answer by Hojou for LINQ to SQL Dynamic Sort questionHojou2009-11-07T21:28:28Z2009-11-07T21:28:28Z<p>I'm not sure i understand your question, how does sidx and sord relate to your query?</p>
<p>Isn't your problem rather that you have to end your query with OrderBy(...).ThenBy(...) instead of a combined OrderBy?</p>
http://stackoverflow.com/questions/377393/asp-net-radiobutton-messing-with-the-name-groupname4ASP.NET RadioButton messing with the name (groupname)Hojou2008-12-18T09:50:21Z2009-11-01T23:37:41Z
<p>I got a templated control (a repeater) listing some text and other markup. Each item has a radiobutton associated with it, making it possible for the user to select ONE of the items created by the repeater.</p>
<p>The repeater writes the radiobutton setting its id and name generated with the default asp.net naming convention making each radiobutton a full 'group'. This means all radiobuttons are independant on each other, which again unfortunately means i can select all radiobuttons at the same time. The radiobutton has the clever attribute 'groupname' used to set a common name so they get grouped together and thus should be dependant (so i can only select one at a time). The problem is - this doesn't work - the repeater makes sure the id and thus the name (which controls the grouping) are different.</p>
<p>Since i use a repeater (could have been a listview or any other templated databound control) i can't use the RadioButtonList. So where does that leave me?</p>
<p>I know i've had this problem before and solved it. I know almost every asp.net programmer must have had it too, so why can't i google and find a solid solution to the problem? I came across solutions to enforce the grouping by javascript (ugly!) or even to handle the radiobuttons as non-server controls, forcing me to do a Request.Form[name] to read the status. I also tried experimenting with overriding the name attribute on the PreRender event - unfortunately the owning page and masterpage again overrides this name to reflect the full id/name so i end up with the same wrong result.</p>
<p>If you have no better solution than i posted, you are still very welcome to post your thoughts - atleast i'll know that my friend 'jack' is right about how messed up 'asp.net' is sometimes ;)</p>
http://stackoverflow.com/questions/399867/custom-events-in-jquery6Custom events in jquery?Hojou2008-12-30T09:32:35Z2009-10-31T20:28:41Z
<p>I'm looking for some input on how to implement custom eventhandling in jquery the best way. I know how to hook up events from the dom elements like 'click' etc, but I'm building a tiny javascript library/plugin to handle some preview functionality.</p>
<p>I've got a script running to update some text in a dom element from a set of rules and data/user input I got, but now I need that same text shown in other elements that this script can't possibly know of. What I need is a good pattern to somehow observe this script producing the needed text.</p>
<p>So how do I do this? Did I overlook some builtin functionality in jquery to raise/handle user events or do I need some jquery plugin to do it? What do you think is the best way/plugin to handle this?</p>
http://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page0How to post form data on an UTF-8 page to a western european (ISO) pageHojou2009-10-23T06:02:34Z2009-10-29T10:10:54Z
<p>I need to post a form on a new website which is UTF-8 encoded. The problem is - i need to post it to a legacy site encoded with western european (iso). Certain characters gets messed up in the post (like danish special characters).</p>
<p>It is not possible to change the character encoding on the legacy website as it would definately break stuff on the old site (so that's a no-go). I might be able to do some magic with the data (some branching on input) on the legacy site, but that would be the fallback solution.</p>
<p>I have jquery on the client to help with whatever possible encoding tricks would be possible there.</p>
<p>I see a possible solution of actually posting from the new UTF-8 page to another new page that changes the encoding server-side and reposting it to the legacy site, but that just seems ugly...</p>
<p>The new site is running asp.net mvc and the old legacy is classic asp (not asp.net) if that makes a difference (i hope it doesn't since i'd really like to handle stuff client-side).</p>
http://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page/1642683#16426830Answer by Hojou for How to post form data on an UTF-8 page to a western european (ISO) pageHojou2009-10-29T10:10:54Z2009-10-29T10:10:54Z<p>Ok so we ended up url encoding the data before submitting it to the landing page.</p>
<p>This solved the two problems the other solutions had of 1) an extra landing/jump-page to transform the values and 2) of not rewriting a large part of the old legacy (which is being migrated) site to accept UTF-8</p>
<p>Anyways we put the logic of submitting data from out site to the legacy site into a jquery plugin, which handles any form elements in the form by escaping each value before posting the form - actually the landing/old page requires the data in GET format, so we just end up setting window.location to the resulting querystring - but i guess we might as well have submitted the form with a normal POST if we wanted to.</p>
http://stackoverflow.com/questions/1502133/injecting-a-string-into-a-javascript-on-an-asp-net-mvc-view1Injecting a string into a javascript on an asp.net mvc viewHojou2009-10-01T06:02:42Z2009-10-01T06:09:55Z
<p>I have a view that contains a javascript function that i need to init/call when the page loads. The method is static but it needs to be called with some parameteres (a list of Id's) - this list is dynamic and varies by some querystring parameters (i can not generate the list clientside from the querystring).</p>
<p>So i need to generate this list server-side.</p>
<p>My options are, as far as i see it:</p>
<blockquote>
<p>1) Make an ajax call on the client, requesting the ids from the server.</p>
<p>2) Inject/inserting the ids directly on the view (it is a property on the viewmodel).</p>
</blockquote>
<p>No matter how i turn it, option 2 seems the most sane. I already got the data ready on the viewmodel and thus it's ready when the view is populated - i see no reason to make an extra request to the server, just to get the data.</p>
<p>I know many would think it's a bad idea to inject something dynamic into an otherwise static javascript. For that i could simply just inject a new javascript, holding only the Ids and a call to the static javascript method, which is what i really want to do.</p>
<p>My problem is this though: When i write my asp.net <%= %> includes, VS IDE stops highligting, making me think i might be on the wrong track? Surely i'm not the only one needing to output something in a javascript block in asp.net mvc?</p>
http://stackoverflow.com/questions/823968/displaying-a-meaningfull-error-when-uploading-too-large-a-file1Displaying a meaningfull error when uploading too large a fileHojou2009-05-05T09:00:41Z2009-09-10T19:48:25Z
<p>We have set a fixed limit on the filesize of uploads on our site - below the size of the default asp.net and iis setting.</p>
<p>I have a simple catch setup in Application_BeginRequest that catches this (it's not excat since it checks the ContentLength including all other form data but it's good enough).
I want to either resume processing of the page the user tried to upload to, or as a fallback plan redirect the user to a page, explaining that the filesize was too big (we already have a subtitle explaining this, but you know users - 'they don't need to read no stinking subtitles').</p>
<p>So what's the problem? Well it seems that my Response was already sent to the user - a 404 explaining that the page could not be found. I don't want this behaviour, i want to flush this response, since it's not the one i want the user to see - i want to show something else - build my own response, redirect or just process the page they were supposed to get anyways.</p>
<p>I think the problem might still be IIS rejecting the request/post since the file is bigger than what IIS wants. I really do dig this - a mad user trying to upload a 20meg picture shouldn't be allowed to DoS the IIS to its knees, but is this it? Or do i get a chance to intercept this response to the user - instead of increasing the max size on the IIS and thus spending bandwith on receiving this file, i just want to identify this post as 'being too big' and sending an apropriate response back to the user.</p>
http://stackoverflow.com/questions/1340504/i-would-need-a-little-help-to-write-this-linq-query/1340529#13405290Answer by Hojou for I would need a little help to write this linq queryHojou2009-08-27T11:38:19Z2009-08-27T11:38:19Z<p>While this is not the solution, may i ask why you need to transform a whole SQL statement to Linq?</p>
http://stackoverflow.com/questions/1332639/can-i-set-a-value-in-the-onclick-function/1332642#13326420Answer by Hojou for Can I set a value in the onclick function?Hojou2009-08-26T06:14:35Z2009-08-26T06:14:35Z<p>Sure, why don't you take it for a test-drive :)</p>
<p>Both examples should work - except you need to put the actual javascript function in a
<code><javascript></code> block.</p>
http://stackoverflow.com/questions/1330879/are-threads-waiting-on-a-lock-fifo/1330886#13308866Answer by Hojou for Are threads waiting on a lock FIFO?Hojou2009-08-25T20:43:15Z2009-08-25T20:49:36Z<p>Updated my answer:
They are queued, but the order is not guaranteed to be FIFO.</p>
<p>Check out this link: <a href="http://www.albahari.com/threading/part2.aspx" rel="nofollow">http://www.albahari.com/threading/part2.aspx</a></p>
http://stackoverflow.com/questions/1330777/filteroperators-or-filteroperatortype-the-correct-naming-format-for-an-enum-in/1330794#13307941Answer by Hojou for FilterOperators or FilterOperatorType - The correct naming format for an enum in C#Hojou2009-08-25T20:31:25Z2009-08-25T20:31:25Z<p>I think it's all about agreeing on a standard (you can define your own) and then sticking to it. I'd say appending "Type" seems like a good idea, even though for something as simple as "Color" it might seem a bit silly. It does hint that it is an enum, which I think is nice.</p>
<p>I'd say go for the last example :)</p>
http://stackoverflow.com/questions/1330281/what-is-the-persistence-domain-model/1330307#13303070Answer by Hojou for What is the "persistence domain model"Hojou2009-08-25T19:01:26Z2009-08-25T19:01:26Z<p>You could look up Domain Driven Design (DDD). <a href="http://en.wikipedia.org/wiki/Domain-driven%5Fdesign" rel="nofollow">http://en.wikipedia.org/wiki/Domain-driven_design</a>
The persistence part is simply, that it is capable of persisting (storing its state) which can be done somewhat painless with an OR mapper like Hibernate.</p>
http://stackoverflow.com/questions/1299066/where-does-my-net-assembly-read-its-configuration-from-when-hosted-as-com1Where does my .net assembly read its configuration from when hosted as COM?Hojou2009-08-19T10:43:41Z2009-08-19T11:06:41Z
<p>Ok i created a .net assembly and it works fine from my asp.net website. I now want to host it as COM, so i can use it on an old legacy asp website. It kinda works, except it won't read the appsettings from the configuration file.</p>
<p>I would think it should read it from the same folder where i registered my assembly with regasm and where the .dll resides. I tried copying the config file to two extra files (in case it read from a different named file besides "assembly-file-name"+.config
The two files are app.config and application.config - it doesn't seem to read from any of them.</p>
<p>Where does my .net assembly read its configuration from when hosted as COM?</p>
http://stackoverflow.com/questions/1299066/where-does-my-net-assembly-read-its-configuration-from-when-hosted-as-com/1299194#12991940Answer by Hojou for Where does my .net assembly read its configuration from when hosted as COM?Hojou2009-08-19T11:06:00Z2009-08-19T11:06:00Z<p>Ok i found a solution that makes me happy.</p>
<p>I ended up hosting the COM object in Component Services. On the package i picked Properties and selected the Activation tab, there i entered the location of my config file in "Application Root Directory". Now to make it work, i had to rename my config file to application.config and somehow i also had to create a new file in the same location called application.manifest with the following data:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
</assembly>
</code></pre>
<p>This actually solves the problem of having "the dll" read the config file - actually since component services is the host (in place of the exe/website) it determines the location/config.</p>
<p>Woop - and thanks for the input guys - i hadn't thought of the problem Thorsten mentioned before.</p>
http://stackoverflow.com/questions/1192183/hosting-a-net-assembly-for-com-interop-with-long-lifetime0Hosting a .net assembly for COM interop with long lifetime?Hojou2009-07-28T06:13:26Z2009-08-19T10:52:22Z
<p>I have a component (an assembly built in .net) that i need to access on (almost) every request to two different websites. One website is written in classic asp and the other one in asp.net mvc.</p>
<p>At the moment i reference the assembly in the asp.net solution and call it like i would any .net assembly. On the classic asp website, i call it through a COM wrapper.</p>
<p>This is all good, except now i need this component to actually stay alive and monitor changes to a configuration file. In my asp.net website i could keep a refence in the application scope and i guess i could register it in component services for the asp access.</p>
<p>Is this the best way to do it? Also, this way the component would actually be hosted twice - one instance in the asp.net application scope and one in the component services. I could perhaps instead only have it live in component services, and then instead reference it from asp.net.</p>
<p>I don't know - something smells fishy (and no, it's not me) - am i on the right track or do you see better alternatives?</p>
http://stackoverflow.com/questions/1192183/hosting-a-net-assembly-for-com-interop-with-long-lifetime/1299127#12991270Answer by Hojou for Hosting a .net assembly for COM interop with long lifetime?Hojou2009-08-19T10:52:22Z2009-08-19T10:52:22Z<p>Ok so i think i found two solutions, both acceptable for this project:</p>
<p>1) Register it in global.asa on the Application_OnStart in the Application object like this <code>Application("Someobject") = Server.CreateObject("Someobject")</code></p>
<p>2) Host it in component services and handle lifetime there.</p>
http://stackoverflow.com/questions/1299045/is-resharper-correct/1299093#12990930Answer by Hojou for Is Resharper correct?Hojou2009-08-19T10:47:54Z2009-08-19T10:47:54Z<p>For the 3rd one - the one that annoys me the most. It provides the reader with less information and i think it's just a matter of showing off a newish feature.</p>
<p>I'd say - use var when you know the return type and use the correct object type when you do not like this:</p>
<pre><code>var reader = new XmlReader(.... // Implicit
XmlReader reader = SomeClass.GetReader() // Explicit when you can't be sure
</code></pre>
http://stackoverflow.com/questions/1192150/replace-v-in-c-string/1192205#11922052Answer by Hojou for Replace /v in C# stringHojou2009-07-28T06:24:01Z2009-07-28T06:24:01Z<pre><code>string a = "Lapensee\v";
string b = a.Replace("\v", ""); // You don't want the double \\
Console.WriteLine(b);
</code></pre>
<p>Since you have \v in the string a, you should also replace it with \v.</p>
http://stackoverflow.com/questions/1091837/programatic-property-injection-with-microsoft-unity1Programatic property injection with Microsoft UnityHojou2009-07-07T11:33:33Z2009-07-10T01:11:18Z
<p>I use contructor injection in my solution, but this one class has a property that i do not want to pass in the constructor where i have the invariant dependencies.</p>
<p>Let's say i got an ILogger and it has a FileName property i want to set, while still having it set the dependancies in the contructor.
How do i go about registering the type, and at the same time pass the defaunt connection string.</p>
<p>I hope there is an easy way to do it - preferably without decorating the property with an attribute, but if the setup is easier with the attribute i guess that's cool :)</p>
<p>So the question is, how do i inject a property value on an object that also uses contructor injection - with Unity.</p>
<p>UPDATE: I mentioned it in the title, but i forgot to elaborate in the body of the text - i want to set these dependencies up manually (in code) as opposed to in a config file.</p>
http://stackoverflow.com/questions/1091837/programatic-property-injection-with-microsoft-unity/1091881#10918811Answer by Hojou for Programatic property injection with Microsoft UnityHojou2009-07-07T11:48:27Z2009-07-07T11:48:27Z<p>Ok i guess it helped to ask the question, i found out - here it is.</p>
<pre><code>container.Configure<InjectedMembers>().ConfigureInjectionFor<BasicLogger>(
new InjectionProperty("FileName", @"C:\test.log")
);
</code></pre>
http://stackoverflow.com/questions/1001129/registering-my-net-assembly-for-com-interoperability-doesnt-expose-my-methods1Registering my .net assembly for COM interoperability doesn't expose my methods.Hojou2009-06-16T12:21:39Z2009-06-29T20:04:44Z
<p>Ok, I'm going crazy. I've been trying to make a simple .net assembly visible to use as a COM object but it's not working. I've been trying a lot of different aproaches but none of them work. So far the closest i've got is the one with the least amount of attributes, interfaces, manually registering etc.</p>
<p>I have a vbscript as a test which looks like this:</p>
<pre><code>Dim o
o = CreateObject("MyNamespace.MyClass")
msgbox o.Test()
</code></pre>
<p>My c# code looks like this:</p>
<pre><code>using System;
using System.Runtime.InteropServices;
namespace MyNamespace
{
[ProgId("MyNamespace.MyClass")]
public class MyClass
{
public string Test()
{
return "teststring";
}
}
}
</code></pre>
<p>On my project (VS2008) i've selected 'Make assembly COM visible' - which added an attribute to my AssemblyInfo.cs and i also checked 'Register for COM interop'.</p>
<p>I Can see that the ProgId really makes no difference (in my case anyways) - as long as i specify the real namespace+classname, i can however override it which i guess is nice.</p>
<p>The problem is - my CreateObject goes well, but the method Test() can not be found. In fact if i take the dll and extract the tlb and expect that i see no methods at all.</p>
<p>The error i get is this:</p>
<blockquote>
<p>C:\inetpub\wwwroot\ASPTest\testrun.vbs(3,
1) Microsoft VBScript runtime error:
Object doesn't support this property
or method: 'Test'</p>
</blockquote>
<p>I'd love any feedback, but just to let you know what i've been trying. I've messing around with Guid and AttributeGuid on the class, defining the COMVisible explicitly on the class as well i tried NOT registering for COM interop and instead did regasm /codebase /regfile.</p>
<p>One last note - most my testing has revolved around a non-signed assembly, but trying to pinpoint the error i tried with a strongname/key as well but it didn't do anything.</p>
<p>Can anyone help me find the problem, please?</p>
http://stackoverflow.com/questions/1026117/filter-on-category-for-nunit-msbuild-tasks1Filter on Category for NUnit MSBuild tasks?Hojou2009-06-22T08:42:45Z2009-06-22T09:20:34Z
<p>I'm setting up a MSBuild project to run some NUnit test, using the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks Project</a>. </p>
<p>With these settings I'll be able to run the NUnit tests:</p>
<pre><code><Target Name="Test" DependsOnTargets="Build">
<CreateItem Include="$(ProjectTestDir)\$(ClassLibraryOutputDirectory)\*.Tests.dll">
<Output TaskParameter="Include" ItemName="TestAssembly" />
</CreateItem>
<NUnit Assemblies="@(TestAssembly)" />
</Target>
</code></pre>
<p>... but how can i run only certain tests - say the ones with a specific Category? We've added different categories to our tests - some to run all the time, some to only run at a nightly build etc.</p>
<p>I don't see any settings allowing me to filter on this, or did I miss something? Surely some of you have had this same problem and solved it somehow? It doesn't have to be using this msbuild community tasks project.</p>
http://stackoverflow.com/questions/1001129/registering-my-net-assembly-for-com-interoperability-doesnt-expose-my-methods/1005429#10054291Answer by Hojou for Registering my .net assembly for COM interoperability doesn't expose my methods.Hojou2009-06-17T06:41:02Z2009-06-17T06:41:02Z<p>I started from the beginning and removed anything regarding COM interop on my project, i then added</p>
<pre><code>[Guid(...some guid...)]
[ComVisible(true)]
</code></pre>
<p>on MyClass and i added a strongname (used the project setting to set it - instead of defining it in the AssemblyInfo.cs.</p>
<p>When i compiled the assembly, i copied the files to another location where i did a</p>
<pre><code>regasm MyNamespace.MyClass.dll /codebase /regfile
</code></pre>
<p>Then i ran and accepted the registry entry.</p>
<p>This made it work - whenever i make changes i just recompile and copy the files over the old (no unregistering) and then i only do:</p>
<pre><code>regasm MyNamespace.MyClass.dll /codebase
</code></pre>
<p>... and that's it - changes i made to MyClass are imediately visible in my vbscript and in my asp page.</p>
http://stackoverflow.com/questions/1001129/registering-my-net-assembly-for-com-interoperability-doesnt-expose-my-methods/1001215#10012151Answer by Hojou for Registering my .net assembly for COM interoperability doesn't expose my methods.Hojou2009-06-16T12:36:36Z2009-06-16T12:36:36Z<p>Did i mention i run Windows 7 RC 64 bit?</p>
<p>Well i think that might explain my VS isn't doing it right:
<a href="http://kbalertz.com/956933/Issues-building-project-assembly.aspx" rel="nofollow">http://kbalertz.com/956933/Issues-building-project-assembly.aspx</a>
It seems VS uses the 32bit version of registry and not the 64bit...</p>
http://stackoverflow.com/questions/999889/accessing-classic-asp-httpcontext-from-a-net-wrapped-with-com-interface0Accessing classic asp (http)context from a .net wrapped with COM interface?Hojou2009-06-16T06:53:48Z2009-06-16T08:49:07Z
<p>I don't know if it's possible, but suppose you want to handle reading/writing of cookies on a classic ASP page from a COM object. The COM object is written in .net and wrapped with a COM interface to make it accessible from classic ASP.</p>
<p><strong>For clarification - my question is this:</strong></p>
<p>Is it possible to access the ASP context inside a .net assembly wrapped with a COM interface, when you access it from a classic ASP Page like this:</p>
<pre><code>Set controller = Server.CreateObject("MyNameSpace.MyClass")
my cookievalue = controller.GetSpecialCookieValue()
</code></pre>
<p>This example is an example of accessing the httpcontext's cookie information.</p>
http://stackoverflow.com/questions/981761/is-it-possible-to-register-a-net-assembly-as-com-without-strong-naming-it3Is it possible to register a .net assembly as COM without strong naming it?Hojou2009-06-11T15:18:32Z2009-06-11T15:39:02Z
<p>Ok, so i know how to strong name an assembly and regasm it, so I can access it from a an ASP page.</p>
<p>By strong naming it, it can be placed in the GAC and thus be easily accessible from an ASP page.</p>
<p>Is it possible to somehow register the assembly without signing it with a strong name and still be able, somehow to access it from the ASP page? I want to do this because we want this .net assembly to be able to reference non-signed assemblies and not be as dependant when updating its referenced assemblies.</p>
http://stackoverflow.com/questions/865808/unlocking-asp-net-mvc-templates-in-vs-20080Unlocking asp.net mvc templates in VS 2008Hojou2009-05-14T21:14:08Z2009-05-14T21:44:02Z
<p>Ok so i downloaded the asp.net mvc through the web platform installer. Rebooted the machine and fired up VS 2008 express. Lo and behold there were no website/project templates that could setup an mvc project. I did a little research and found out they would not show up in the express version. No matter - i got team suite edition too so i installed that and hoped for the templates to show up. They did not, so i reinstalled the mvc and they still won't show up.</p>
<p>I hate this part of developing - i just want to dognammed tools to work - what am i doing wrong - why won't the templates show up? I can't seem to uninstall mvc now and reinstalling just tells me that it's already installed...</p>
http://stackoverflow.com/questions/797259/setting-cultureinfo-on-wcf-service-calls1Setting CultureInfo on wcf service calls?Hojou2009-04-28T10:35:08Z2009-05-12T19:01:30Z
<p>I have a WCF service running that needs to parse some data. It turns out that data (points, sizes) gets converted differently in different CultureInfo's and the parsing is spread out in a lot of classes and methods. Since all the parsing is done without passing any CultureInfo the success of the parsing is dependant of the threads culture.</p>
<p>Since there is no programmatic setting of CultureInfo the service picks the current cultureinfo off the machine somehow. I have no idea where it gets this, since changes to the Regional and Language Options doesn't seem to have any effect on the cultureinfo of the wcf service. Also changes to the web.config (yes the service is hosted in iis) doesn't seem to work either.</p>
<p>Am I really left with only one option? Setting the CultureInfo programmaticly? I could find all the conversion calls and pass in a CultureInfo or i could set it on the Thread.CurrentThread.CurrentCulture. Is there no way i can set the CultureInfo once and for all - having effect on all the exposed wcf methods?</p>
http://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page/1613358#1613358Comment by Hojou on How to post form data on an UTF-8 page to a western european (ISO) pageHojou2009-10-27T13:29:12Z2009-10-27T13:29:12ZYeah it seems to cause problems for danish special charactershttp://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page/1613358#1613358Comment by Hojou on How to post form data on an UTF-8 page to a western european (ISO) pageHojou2009-10-26T09:37:49Z2009-10-26T09:37:49ZThis seems to work only in firefox? (not IE)?http://stackoverflow.com/questions/1611618/how-to-post-form-data-on-an-utf-8-page-to-a-western-european-iso-page/1611719#1611719Comment by Hojou on How to post form data on an UTF-8 page to a western european (ISO) pageHojou2009-10-23T09:15:16Z2009-10-23T09:15:16ZThe post i make is actually a search-query onto another site. The search form is present on many different pages, and is present on the most important page of the new site, so changing the encoding for the post's sake would mean setting encoding for almost all of the new site, which has to be UTF-8 (a requirement). I'll ponder some more on what you wrote :)http://stackoverflow.com/questions/797259/setting-cultureinfo-on-wcf-service-calls/854308#854308Comment by Hojou on Setting CultureInfo on wcf service calls?Hojou2009-10-23T06:14:21Z2009-10-23T06:14:21ZI don't know why i missed this, thanks :)http://stackoverflow.com/questions/157260/whats-the-best-way-to-loop-through-a-set-of-elements-in-javascript/157264#157264Comment by Hojou on What's the best way to loop through a set of elements in JavaScript?Hojou2009-10-08T08:25:29Z2009-10-08T08:25:29ZYou are right about the performance hit - especially regarding such devices as mobile :) I guess it depends a lot on the target audience and size of the website generally. I totally agree that adding jquery would be crazy if you're creating a 'simple' website. I'm just colored from my world (classifieds/newspaper/administration websites). Depends on the context, ofcourse...http://stackoverflow.com/questions/157260/whats-the-best-way-to-loop-through-a-set-of-elements-in-javascript/157264#157264Comment by Hojou on What's the best way to loop through a set of elements in JavaScript?Hojou2009-10-05T14:49:07Z2009-10-05T14:49:07Z@Tim: In reality I think there are very few sites i would create using javascript, where adding jquery would be insanity? What are the complications of using jquery compared not to?http://stackoverflow.com/questions/1502133/injecting-a-string-into-a-javascript-on-an-asp-net-mvc-view/1502154#1502154Comment by Hojou on Injecting a string into a javascript on an asp.net mvc viewHojou2009-10-01T06:17:47Z2009-10-01T06:17:47ZI was only thinking of putting the static javascript in a seperate js file - to seperate the static javascript from the dynamic. But thanks, this is what i'm currently doing, just wondering if i'm missing something - i hate that hightlighting is not showing up...http://stackoverflow.com/questions/1299066/where-does-my-net-assembly-read-its-configuration-from-when-hosted-as-com/1299199#1299199Comment by Hojou on Where does my .net assembly read its configuration from when hosted as COM?Hojou2009-08-19T11:09:53Z2009-08-19T11:09:53ZI think you need credit for this - i found it somewhere, it might as well have been your site - anyways it explains it perfectly :)http://stackoverflow.com/questions/1299066/where-does-my-net-assembly-read-its-configuration-from-when-hosted-as-comComment by Hojou on Where does my .net assembly read its configuration from when hosted as COM?Hojou2009-08-19T11:07:53Z2009-08-19T11:07:53ZI don't understand Alfred? I just need to be able to access it from ASP with the Server.CreateObject - it resides on the same server as the legacy asp site so it doesn't have to be COM+ - even though i guess that's the name for all COM objects - even if they aren't distributed..http://stackoverflow.com/questions/1299066/where-does-my-net-assembly-read-its-configuration-from-when-hosted-as-com/1299091#1299091Comment by Hojou on Where does my .net assembly read its configuration from when hosted as COM?Hojou2009-08-19T10:48:50Z2009-08-19T10:48:50ZDog nammit, I hope you're wrong ;)http://stackoverflow.com/questions/1192183/hosting-a-net-assembly-for-com-interop-with-long-lifetime/1198320#1198320Comment by Hojou on Hosting a .net assembly for COM interop with long lifetime?Hojou2009-08-03T17:39:22Z2009-08-03T17:39:22ZThis components is going to be called for almost every request to an asp.net website and for many requests to a legacy classic asp site, hence i want the initialization (reading/parsing of a file) to happen as fast as possible. Also i need to be able to call it from VBScript (the classic asp site) which can't call .net assemblies directly.http://stackoverflow.com/questions/1192183/hosting-a-net-assembly-for-com-interop-with-long-lifetimeComment by Hojou on Hosting a .net assembly for COM interop with long lifetime?Hojou2009-08-03T17:37:13Z2009-08-03T17:37:13ZThat's right, thanks :)http://stackoverflow.com/questions/1091837/programatic-property-injection-with-microsoft-unity/1107238#1107238Comment by Hojou on Programatic property injection with Microsoft UnityHojou2009-07-15T06:34:24Z2009-07-15T06:34:24ZYou got a good point there, but we're trying to keep it as simple as possible, and all this specific implementation needs is a filename.http://stackoverflow.com/questions/1091837/programatic-property-injection-with-microsoft-unity/1091855#1091855Comment by Hojou on Programatic property injection with Microsoft UnityHojou2009-07-07T11:49:14Z2009-07-07T11:49:14ZYeah i didn't make it very clear - but i do want to do it manually ;)http://stackoverflow.com/questions/1001129/registering-my-net-assembly-for-com-interoperability-doesnt-expose-my-methods/1060214#1060214Comment by Hojou on Registering my .net assembly for COM interoperability doesn't expose my methods.Hojou2009-07-07T06:28:50Z2009-07-07T06:28:50ZThe .net framework will provide it with a default empty contructor if i don't supply one. I did try it though, but also my resharper plugin grays it out, implying that declaring it is redundant.