if you are using the Microsoft Chart control with in Update Panel sometimes its through the following exception
[Exception... "'Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Error executing child request for ChartImg.axd.' when calling method:
and controls not working properly,
you have to check the following details in your Web.config files
1.httpHandlers
remove name="ChartImageHandler"
add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/
httpHandlers
2.appSettings
add key="ChartImageHandler" value="Storage=file;Timeout=20;dir=your_sorage_here;"/
/appSettings
Tuesday, April 28, 2009
Monday, March 9, 2009
Pass Childwindow value to Parent Window
function setvalue() {
var txtvalue= document.getElementById("TextBox1").value;
window.opener.document.forms["form1"].elements["txttest"].value = txtvalue;//Parent Window Control ID
window.close();
// window.opener.document.forms["form1"].txttest.value=
}
var txtvalue= document.getElementById("TextBox1").value;
window.opener.document.forms["form1"].elements["txttest"].value = txtvalue;//Parent Window Control ID
window.close();
// window.opener.document.forms["form1"].txttest.value=
}
Friday, February 13, 2009
Feature of VS.Net 2008
1.LINQ Support
2.Expression Blend Support
3.Windows Presentation Foundation
4.VS 2008 Multi-Targeting Support
5.AJAX support for ASP.NET
6.JavaScript Debugging Support
7.Nested Master Page Support
8.LINQ Intellisense and Javascript Intellisense support for silverlight applications
9.Organize Imports or Usings:
10.Intellisense Filtering:
11.Visual Studio 2008 Split View
12.In built Silverlight Library
13.Visual Studio LINQ Designer
2.Expression Blend Support
3.Windows Presentation Foundation
4.VS 2008 Multi-Targeting Support
5.AJAX support for ASP.NET
6.JavaScript Debugging Support
7.Nested Master Page Support
8.LINQ Intellisense and Javascript Intellisense support for silverlight applications
9.Organize Imports or Usings:
10.Intellisense Filtering:
11.Visual Studio 2008 Split View
12.In built Silverlight Library
13.Visual Studio LINQ Designer
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
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/
“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/
Subscribe to:
Posts (Atom)