Tuesday, January 20, 2009

GoogleAds sense Issue

The google Ads Script is not properly working when we using the Ajax Control toolkit and it's throw the following error

System.FormatException: String was not recognized as a valid DateTime

Ajax Atlas Date Parsing class Override the Google Ads Date Parse Class.Now we can solve the issue using the following snipset

  Date.__cyril_parse = Date.parse;
Date.parse = function(s){
try {
return Date.__cyril_parse(s);
} catch (e){
var d = new Date(s);
if (s) {
return s;
} else {
throw e;
}
}

Click to see full details http://forums.asp.net/p/1055158/1501276.aspx
}

Thursday, January 8, 2009

My Sql Version Problem

When I am try to Installing the MySql 5.0 in Vista ,after finish the Installation I could not run the MySql Instance Config executable file and its throw the following message

“The Application has failed to start because its side-by-side configuration is incorrect. please see the application event log for more detail”.

After spent the time I got the fact of Issue which is MySQL Version problem. The MySql assembly manifest specifies that it requires the privilege ”as Administrator”.
The actual name is “requireAdministrator”.


I changed the privilege(Left side Tree 24--- 1--1033) and compile & save the file using the Resource Hacker. Now I can run the MySql Instance Config executable file.
Download the Resource Hacker http://www.angusj.com/resourcehacker/