September 2010
14 posts
3 tags
HttpHandler to combine CSS and Javascript files... →
Create an HttpHandler to compress and combine files for faster page loads.
1 tag
Compete - Website visitor estimation →
2 tags
SparkFun - Stuff for hardware geeks →
2 tags
Fluent Interfaces →
DoYou().Think().This(“Is Cool”);
4 tags
Google API for .Net →
1 tag
How to mimic an UpdatePanel in ASP.NET MVC →
2 tags
Awesome Cheatsheets Archive →
Absolutely love the KISS principle in action here too.. Way to go! http://cheat-sheets.org is another awesome one too.
Nutrition tips from Ileana
Try this Chocolate Pure Whey Protein Shake.
Substitute dressings with Balsamic vinegar, olive oil, and honey.
These are the best protein bars.
Sweet potatoes/good carbs 3 times a week max.
Carbs and sugars should be taken in the morning.
Every kind of wall flip
2 tags
Getting Area, Controller, Action from current...
Controller: <%: ViewContext.RouteData.Values[“controller”] %>
Action: <%: ViewContext.RouteData.Values[“action”] %>
Area: <%: ViewContext.RouteData.DataTokens[“area”] %>
2 tags
Remember: Encode Form properly when Uploading
Why isn’t the file I’m uploading available in my action when I post the form?
Make sure your form is encoded properly!
W3.org says ” The content type “multipart/form-data” should be used for submitting forms that contain files, non-ASCII data, and binary data.”
So your form should look something like this:
<FORM action="http://server.com/controller/action"...
2 tags
Using Fiddler with Visual Studio
Replace the domain with “ipv4.fiddler” Example: http://localhost:1234/myapp Change to: http://ipv4.fiddler:1234/myapp