DCSIMG
ASP.NET - Rotem Bloom's Blog

Rotem Bloom's Blog

Share knowledge on .NET and web development

News

About Me

Glad to help and share knowledge on .NET and also huge fan of Dream Theater.

Contact me via messenger

View Rotem Bloom's profile on LinkedIn

Dream Theater Pics

Blogs I Read

Browse by Tags

All Tags » ASP.NET (RSS)
Minifying HTML With ASP.NET MVC And Razor
Hi, I read nice article with cool solution for Minifying HTML With ASP.NET MVC And Razor. You can read more here . You can start use it in you MVC projects, for 25% smaller HTML pages.
Browser and Operating System Detection In ASP.NET
Hi, Detect user Browser and Operating System version in ASP.NET is very simple using the C# code: Request.Browser This code retuns the HttpBrowserCapabilities class that has the information we desire. Unfortunately the default Browser Caps configuration that come with ASP.NET 2.0 does not include browsers like Google Chrome and I could not find a way of getting the operating system version. Finally I came up with solution that solve my problem as describe below: On my ASP.NET application I open new...
How to change ASP.NET CheckBox control Enabled property using javascript. bug or behavior?
Changing status to enabled\disabled for regular input type checkbox in javascript is very simple. You just need to use the javascript code: var checkBox = document.getElementById( "chkToTest" ); checkBox.disabled = true\false; Well try to use this javascript code above on ASP.NET checkbox web control when you set the server side Enabled property to false like below: chkToTest.Enabled = false ; I'm telling you it will not work!!!! Do you ask how to solve this bug or behavior? You just...
Compress and Consolidation of JavaScript and CSS files for .NET
Hi, There is cool open source project in codeplex called: Javascript and CSS Consolidation for ASP.NET that give infrastructure for compress and consolidation JS and CSS files for ASP.NET application. Project Description A library for ASP.NET that provides an easy way to consolidate external javascript and css files. The primary goals for this project are: * Make the development environment mirror production as much as possible (e.g. files should be consolidated in all environments including the...