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...
Asp.Net MVC oauth LinkedIn Email problem
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...
IE 6 Market Share
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...
Safari on Windows 7 does not allow entering URL
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...
Manually delete users and profiles from ASP.NET Membership
-- 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...
Special 48-Hour Offer: Free ASP.NET MVC 3 Video Training
The paid training videos are free for a limited time for ASP.NET MVC. Check out here
http://www.pluralsight-training.n...
Guide to Css Navigation Menu
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...
Use Javascript or not - Fair use of scripting
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...
asp checkbox javascript confirmation event
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;
}
...