helios

Stories submitted by helios

ASP.NET MVC 2 – Linking Between Areas(helios.ca)

submitted by helioshelios(85) 1 year, 11 months ago

If you’ve been playing with MVC 2 you might be wondering how to make ActionLinks between areas. I know it took me a good half hour to figure out! read more...

add a comment |category: |Views: 18

tags: another

ASP.NET MVC 2 Model Validation With Localization(helios.ca)

submitted by helioshelios(85) 2 years, 3 months ago

ASP.NET MVC 2 Model Validation With Localization. read more...

add a comment |category: |Views: 43

tags: another

"Edit WCF Configuration" is missing from Visual Studio 2008 context me(helios.ca)

submitted by helioshelios(85) 2 years, 3 months ago

“Edit WCF Configuration” is missing from Visual Studio 2008 context menu So this morning I format a laptop and install a fresh copy of Visual Studio 2008. I then try to edit the Web.Config using Edit WCF Configuration, but wait it’s missing! What the hell? So I look around in VS menus and find Tools -> WCF Service Configurator Editor. I clicked it did not look like what I was looking for… But in fact I was in luck because after trying to right-click on Web.Config again the Edit WCF Configuration was ba... read more...

add a comment |category: |Views: 4

tags: another

How To: Remove Workspaces from Visual Studio | MIKE(helios.ca)

submitted by helioshelios(85) 2 years, 4 months ago

How To: Remove Workspaces from Visual Studio I usually work using Team Foundation Systems over VPN. And sometimes my VPN access is revoked because I no longer work for a particular client, when this happens my Visual Studio Workspaces is stock there, I can’t reuse the same folder. I’ve been looking into this and found a fairly simple solution from Greg.Open the Command Line ( Start -> Run -> cmd)Go to: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE (or C:\Program Files\Microsoft Visual Studio... read more...

add a comment |category: |Views: 3

tags: another

ASP.NET MVC Extension Methods of UrlHelper(helios.ca)

submitted by helioshelios(85) 2 years, 8 months ago

I think this is kind of obvious, but I guess it might not be for everyone because I’ve seen some code where people do not use this! URL Helpers are really easy to setup, it takes only a few minutes and will probably save you a lot of massive Search & Replace in the future! read more...

add a comment |category: |Views: 65

tags: another

Did You Know: “App_Offline.htm” Takes IIS Website Offline(helios.ca)

submitted by helioshelios(85) 2 years, 10 months ago

“App_Offline.htm” Takes IIS Website Offline read more...

add a comment |category: |Views: 42

tags: another

http://helios.ca/2009/06/23/deploying-asp-net-mvc-application-under-ii(helios.ca)

submitted by helioshelios(85) 2 years, 11 months ago

Very simple tutorial to help you deploy ASP.NET MVC Application under IIS6 or IIS7 running in Classic Mode. read more...

add a comment |category: |Views: 3

tags: another

ASP.NET MVC Cascading DropDownList with jQuery(helios.ca)

submitted by helioshelios(85) 2 years, 11 months ago

Here a simple example of cascading drop down list in ASP.NET MVC with jQuery. read more...

add a comment |category: |Views: 398

tags: another

ASP.NET MVC Action Filter - Ajax Only Attribute(helios.ca)

submitted by helioshelios(85) 2 years, 11 months ago

The website I’m currently working on has a lot of AJAX incorporated in it, so my controller has a few actions which are only called in AJAX. At first I was using HttpContext.Request.IsAjaxRequest() within my action to control if the request was indeed an Ajax one, but I didn’t like the fact that I needed to call HttpContext in my control; it also made a lot of redundant code. That is why I decided to build an Action Filter that would do that for me. read more...

add a comment |category: |Views: 108

tags: another

ASP.NET MVC and Localization(helios.ca)

submitted by helioshelios(85) 2 years, 11 months ago

I live in Montreal - Canada, and here we have two officials languages, French and English, that’s why every website I build must be available in both languages. Building an ASP.NET MVC Website using Localization/Globalization is fairly simple and is pretty much like doing it on a plain old ASP.NET Website. read more...

add a comment |category: |Views: 49

tags: another