Last week I had a problem when I tried to export an image from the AGS 9.2 to a pdf file. I got this error: "Sys.WebForms.PageRequestManagerTimeoutException The server request timed out" from the Ajax Extension framework. Its occurred because the export operation was relatively long (something like 2 minutes) and the Ajax Extension Callback framework had a timeout. How to solve this problem? To solve this problem we can increase the timeout. You can change the timeout time by adding a new property...
Last week I had a task to find a way to export a current extent of map control (in ESRI ADF.NET 9.2) to image format (for examples: jpeg, bmp). I tried to look at examples in ESRI documentation and to look over the net, but I didn't found a good one(some of them are not completed and others are implemented in ADF.NET 9.1). I want to show you a complete example to do this: public string GetMapImageUrl(ESRI.ArcGIS.ADF.Web.UI.WebControls.Map mapControl, esriImageFormat imageFormat, int imageHeight,...