Tiny Mce 4.0 How to change Background Color and Styles

Posted On // 1 comment
BackgroundI just downloaded the latest version of TinyMce (4.0) to use it in Asp.Net MVC 4 form.  It was easy to just link the script file by putting link on the page itself. (you should be able...
[Read more]

Asp.Net MVC oauth LinkedIn Email problem

Posted On // Leave a Comment
By default the LinkedinClient with oAuth in DotNetOpenAuth.AspNet.Clients does not retrieve the email of the linkedin logged user. According to the linkedin specifications you need to provide r_emailaddress...
[Read more]

IE 6 Market Share

Posted On // Leave a Comment
Microsoft has launched a new Web site that is aimed at stepping up its campaign to upgrade users from IE 6 to IE 8 and 9. The site has IE usage distribution for various countries worldwide and then a...
[Read more]

Safari on Windows 7 does not allow entering URL

Posted On // Leave a Comment
Problem There is glitch in the latest safari browser and has been there for few months now. On Windows 7 when you install safari, the URL address bar lets you enter the webiste address but on pressing...
[Read more]

Manually delete users and profiles from ASP.NET Membership

Posted On // Leave a Comment
 -- The following sequence of sql commands will delete all users and their related data from membership database   DELETE FROM aspnet_Profile   DELETE FROM aspnet_UsersInRoles  DELETE...
[Read more]

Special 48-Hour Offer: Free ASP.NET MVC 3 Video Training

Posted On // Leave a Comment
The paid training videos are free for a limited time for ASP.NET MVC. Check out here http://www.pluralsight-training.n...
[Read more]

Guide to Css Navigation Menu

Posted On // Leave a Comment
According to Cameron Chapman, In web design, there are certain common design patterns that are used for interaction. Site navigation has a wide variety of common and familiar design patterns that can...
[Read more]

Conference on ASP.NET MVC

Posted On // Leave a Comment
The virtual Microsoft's ASP.NET MVC Conference...
[Read more]

Use Javascript or not - Fair use of scripting

Posted On // Leave a Comment
Look around the web and find out the names of successful web applications that don't use JavaScript. I could not find any and I think you wont find any too. It looks we are lost somewhere between making...
[Read more]

asp checkbox javascript confirmation event

Posted On // 1 comment
Code for ASP Checkbox JS Code function confirmBox(e) { if(e.checked==true) { var answer = confirm('Are you sure you want to cancel?') if (answer) e.checked=true; else e.checked=false; } ...
[Read more]