Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
272 views
I am using the Q3-2009 release and have successfully added static vertical lines as another series to a horizontal bar graph. The bar graph is a percentile representation of data with the vertical lines being the low end of a series of targets. I have scaled the graph to start at the low and high ends of the targets, with a little room above and below so that the lowest value in the data series is shown and the target series is shown clearly with outliers in the data series shown extending past the edge of the graph.

All of that works perfectly and I can upload a sample project that demonstrates the basics of how that is accomplished. What isn't working is the positioning of the SeriesItem labels. Your RadChart help references the [SeriesItem].Label.Appearance property, which is a broken link, and I drilled into the lightly documented (i.e. What's the Single value represent, pixels, percent of chart area?) API help for info on .Position.X and .Position.Y. 

Here is the code I'm trying to implement.

            var targetLine = new ChartSeries
                                 {
                                     Type = ChartSeriesType.Line
                                 };
            // To get a vertical line, the series has to be added for each person
            int countTeam = SampleData.Rows.Count;

            // Setup first item with label
            targetLine.AddItem(value);
            // Show labels only on this first series item
            ChartSeriesItem item = targetLine.Items[0];
            item.Label.Visible = true;
            item.Label.Appearance.RotationAngle = 90;
            item.Label.TextBlock.Text = "#Y{P1}";

            // Show the rest of the series items without labels
            for (int i = 1; i < countTeam; i++)
            {
                targetLine.AddItem(value);
                targetLine.Items[i].Label.Visible = false;
            }
            RadChart1.AddChartSeries(targetLine);
            ... (removed series color coding)
            // Try to reposition the labels with the end goal to be to draw them 
            // below the scale with a label connector line
            // BUG: this fails to relocate
            item.Label.Appearance.Position.Auto = false;
            item.Label.Appearance.Position.X += 10;  // Using random numbers at this point since nothing is happening, there's
            item.Label.Appearance.Position.Y += 10;  // no documentation, and I don't know if X & Y are axis or screen oriented
            item.Label.Appearance.LabelConnectorStyle.Visible = true;

The labels show up as they should, only one on the first item in the series, i.e. the bottom of the chart, but it refuses to move at all from the spot it is automatically drawn. Am I trying to affect this at the wrong point of its creation or is the documentation missing something and/or the interface exposing something it shouldn't, i.e. Position.X and Position.Y being public writable when they don't actually have any affect?
Evgenia
Telerik team
 answered on 24 Feb 2011
2 answers
141 views
Sirs,

I currently have a splitter with a sliding zone with one pane for instructions, a second pane (id = RadPane3)with a rad scheduler looking at a sql table named diary. I have a need to not only show but edit the contact details for the visiting part. I use a grid in a third pane (id=RadPane4) for this - the datasource uses the appointment attribute client ref to retrieve data from the database.

The show part is easy enough by declaring custom attributes linked to the select query of the datasource.
As the contact details are held in a different table to the diary I have diabled the "start editing in advance form" option and tied the onappointmentupdated command as follows

Protected Sub Radscheduler1.AppointmentUpdate (ByVal sender As Object, ByVal e as Telerik.Web,UI.AppointmentUpdateEventArgs) Handles Radschedule1AppointymentUpdate

HiddenField.Value = e.appointment.Attributes("ClientRef")
Radgrid1.Databind
RadPane3.Collapsed=True
RadPane3.Visible=False
RadPane 4.Collapsed=False
RadPane4.Visible=True

end sub

Is there a way that I can insert into here a command that will automatically open RadGrid1 in edit mode without the user having to click the edit button ?

many thanks in advanced

Padster
BRK
Top achievements
Rank 1
 answered on 24 Feb 2011
1 answer
179 views
Hi,

In our project, we are using nested RadGrid, on click of any row, we
show RadListView as a child.
For performance point of view, we used pagination to both Parent Grid as well as for nested RadListView (Child).
AllowPaging=True to both parent & Child
On click of any grid row , we pass ID i.e one of the grid column data (in Grid's ItamDataBound event) as a input to Child RadListView.

my issue is that, whenever i select PageSize from Combobox or any paging button which is inside child RadListview, it calls only RadListViewObjectDataSource's OnSelecting mehtod, due to that the webservice gets input parameter as a empty.
and returns all records which is not related to that specific row.


My Question is where i set the input parameter, so that on a selection of page size in the ListView, the proper parameter could be send to webservice.






arun
Top achievements
Rank 1
 answered on 24 Feb 2011
0 answers
62 views
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="HomePage.aspx.vb" Inherits="BNBERP.WebForm1"  %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  
<head id="Head1" runat="server">
    <title></title>
    <link href="Styles/styles.css" rel="stylesheet" type="text/css" />
  
    <style type="text/css">
                  
        .restrictionZone
        {   top:58px;
            position:absolute ;
            width: 100%;
            height: 575px;
        }
                        
        .monitor
        {
            width: 100%;
            height: 100%;        
        }
                 
        .tab
        {
            left:1px;
            top:635px;
            position:absolute;
            width: 100%;            
        }
          
        .taskbar
        {
            display: block;
            float: left;
            vertical-align:bottom;
        }        
         
    </style>
  
</script>
  
</head>
<body>
    <form id="form1" runat="server">    
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
      
    <div class="monitor">
        <div id="RestrictionZone" class="restrictionZone">
            <!-- / -->
        </div>
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
    </telerik:RadStyleSheetManager>
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
   
    <script type="text/javascript">
            // <![CDATA[
  
        var manager = null;
        var tabStrip = null;
  
        function pageLoad() {
            //get a reference to the needed controls -
            manager = $find("<%= RadWindowManager.ClientID %>");
            tabStrip = $find("<%= RadTabStrip1.ClientID %>");
        }
  
        //opening the window
        function OpenNewWindow(sender, args) {
            var item = args.get_item();
            var itemUrl = item.get_value();
            var itemText = item.get_text();
            if (itemUrl) {
                var windowURL = itemUrl;
                var oWnd = radopen(itemUrl, null);
                oWnd.set_title(itemText);
                oWnd.center();
                tabStrip.trackChanges();
                //create a new tab
                var tab = new Telerik.Web.UI.RadTab();
                //set the text of the tab
                tab.set_text(itemText);
                oWnd.correspondingTab = tab;
                //add the tab to the tabstrip
                tabStrip.get_tabs().add(tab);
                tabStrip.repaint();
                tab.correspondingWnd = oWnd;
                tab.set_imageUrl(item.get_imageUrl());
                tabStrip.commitChanges();
  
                //Select this tab
                tab.select();
            }
        }
  
        function OnClientCommand(sender, args) {
            //because we don't want to show the minimized RadWindow, we hide it after minimizing
            //and raise the _Maximized flag (used in OnClientTabSelected)
            if (args.get_commandName() == "Minimize") {
                if (sender.isMaximized()) {
                    sender._Maximized = true;
                }
  
                sender.hide();
                //raise the _toMinimize flag (used in OnClientActivate)
                sender._toMinimize = true;
                var tab = sender.correspondingTab;
                if (tab) {
                    tab.set_selected(false);
                }
            }
        }
  
        function OnClientTabSelected(sender, args) {
            //get a reference to the corresponding window
            var win = args.get_tab().correspondingWnd;
  
            if (!win) return;
  
            if (!win.isVisible()) {
                win.show();
                win.restore();
                //if the window was maximized before client minimizes it, we need to restore
                //its maximized state
                if (win._Maximized) {
                    win.maximize();
                    win._Maximized = null;
                }
  
            }
  
            //ensure that the currently active RadWindow will have the highest z-Index.
            var popupElem = win.get_popupElement();
            var oldZindex = parseInt(popupElem.style.zIndex);
            var styleZIndex = win.get_stylezindex();
            var newZIndex = (styleZIndex) ? styleZIndex : Telerik.Web.UI.RadWindowUtils.get_newZindex(oldZindex);
            popupElem.style.zIndex = "" + newZIndex;
            win.setActive(true);
        }
  
        function OnClientActivate(sender, args) {
            var tab = sender.correspondingTab;
            if (tab && !sender._toMinimize) {
                tab.set_selected(true);
            }
            sender._toMinimize = false;
        }
        function OnClientClose(oWnd) {
  
            //remove the corresponding tab from the tabstrip
            var tab = oWnd.correspondingTab;
            if (tab) {
                tabStrip.trackChanges();
                tabStrip.get_tabs().remove(tab);
                tabStrip.commitChanges();
            }
        }
            // ]]>
  
        </script>
    </telerik:RadCodeBlock>
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="Default,Zone" />
    <telerik:RadSplitter runat="Server" ID="RadSplitter1" Width="100%" BorderSize="1"
            BorderStyle="None" PanesBorderSize="0" Height="96%" Orientation="Horizontal"
            VisibleDuringInit="false">
            <telerik:RadPane ID="topPane" runat="server" Height="54px">
            <div class="header">
                <div style="margin-top:3px; margin-left:10px;color:white;">BNB SOFTWARE SOLUTIONS PVT.LTD.</div>
                <div class="skin-chooser">               
                    <telerik:RadSkinManager ID="RadSkinManager1" runat="server"  Skin="Windows7">
                    </telerik:RadSkinManager>                    
                </div>                
            </div
            <telerik:RadMenu runat="Server" ID="RadMenu1" EnableShadows="true" EnableRoundedCorners="true"
                             Style="float: none; position:absolute; top:31px; z-index:3000" Width="100%"
                             OnClientItemClicked="OpenNewWindow">
                    <Items>
                                                                  
                        <telerik:RadMenuItem runat="server" Text="File" />  
                        <telerik:RadMenuItem runat="server" Text="Edit" />  
                        <telerik:RadMenuItem runat="server" Text="Operation">   
                          <Items>
                              
                            <telerik:RadMenuItem runat="server" Text="Manage" ImageUrl="~/Images/manage.png">
                                <Items>
                                    <telerik:RadMenuItem Text="Company Information" Value="manage/frmCompanyInformation.aspx" ImageUrl="~/Images/comInfo.png" />
                                    
                                </Items>
                            </telerik:RadMenuItem>
  
</Items>
                  </telerik:RadMenu>   
  
 </telerik:RadPane
                          
            <telerik:RadPane runat="server" ID="contentPane" Scrolling="none">
                <telerik:RadSplitter runat="server" ID="RadSplitter2" BorderStyle="None" 
                    PanesBorderSize="0" CollapseMode="None" style="margin-right: 0px">
                    <telerik:RadPane runat="Server" ID="leftPane" Width="200px" MinWidth="180" MaxWidth="220" >
                        <telerik:RadSplitter runat="server" ID="RadSplitter3" BorderStyle="None" PanesBorderSize="0"
                            Height="266px" Orientation="Horizontal" CollapseMode="None">
                          
                            <telerik:RadSplitBar runat="server" ID="RadSplitBar3" CollapseMode="Both" />
                            <telerik:RadPane runat="server" ID="bottomLeftPane" Height="570px"  >
                                <telerik:RadPanelBar runat="server" ID="RadPanelBar1" Width="100%" OnClientItemClicked="OpenNewWindow"
                                                     ExpandMode="SingleExpandedItem" >
                                    <Items>
                                        <telerik:RadPanelItem Text="Manage" ImageUrl="~/Images/manage.png">
                                            <items>
                                                 
                                                <telerik:RadPanelItem Text="Company Information" Value="manage/frmCompanyInformation.aspx" ImageUrl="~/Images/comInfo.png" />
                                                <telerik:RadPanelItem Text="User Details" Value="manage/frmUserDetail.aspx" ImageUrl="~/Images/userDetails.png" />
                            </items>
                                            </telerik:RadPanelItem>
                                              
</Items>
                                </telerik:RadPanelBar>
                            </telerik:RadPane>
                        </telerik:RadSplitter>
                    </telerik:RadPane>
                    <telerik:RadSplitBar runat="server" ID="RadSplitBar1" CollapseMode="Forward"  />
                    <telerik:RadPane runat="Server" ID="rightPane" CssClass="right-pane" Scrolling="None">
                       
                      <telerik:RadTabStrip OnClientTabSelected="OnClientTabSelected" ID="RadTabStrip1"
                        Width="100%" CssClass="tab"
                        Orientation="Horizontalbottom" runat="server"  BackColor="Bisque">
                        <Tabs>
                            <telerik:RadTab style="display: none;" />
                        </Tabs>
                      </telerik:RadTabStrip>
                      
                    </telerik:RadPane>
                </telerik:RadSplitter>
            </telerik:RadPane>
    </telerik:RadSplitter
  
    </div>                        
        <telerik:RadWindowManager ShowOnTopWhenMaximized="false" Width="600px" left="0px"
               Height="560px"  Behaviors="Close,Minimize,Reload,move,maximize,resize"
               ID="RadWindowManager"  RestrictionZoneID="RestrictionZone" OnClientClose="OnClientClose"
               runat="server" BackColor="Aquamarine" OnClientCommand="OnClientCommand"
               EnableShadow="true"  VisibleOnPageLoad="true">                                            
               
         </telerik:RadWindowManager>
    </form>
</body>
</html>
Hello Sir/ Madam

I'm not able to browse radPanel in mozila firfox browser, but it works on IE.
I'm attching my source code , please  go through that and help me out...

Sunil
Top achievements
Rank 1
 asked on 24 Feb 2011
2 answers
72 views
Hello Sir/Madam


I'm using radwindow to open other pages , and when i refresh my page  all the page opened inside radwindow goes off.
Please help me out......

Thanks 
Sunil
Top achievements
Rank 1
 answered on 24 Feb 2011
2 answers
247 views
hello to all

i m making pie chart and binding with database but i m not able to create correct

my code is:
    <div>
        <telerik:RadChart ID="RadChart2" runat="server" DefaultType="Pie" Width="710px" AutoTextWrap="true"
            DataSourceID="SqlDataSource1" Skin="LightGreen">

          
            <Series>
                <telerik:ChartSeries Name="Total Size" Type="Pie" DataYColumn="tsize">
                    <Appearance>
                        <FillStyle MainColor="243, 206, 119" FillType="ComplexGradient">
                            <FillSettings>
                                <ComplexGradient>
                                    <telerik:GradientElement Color="243, 206, 119"></telerik:GradientElement>
                                    <telerik:GradientElement Color="236, 190, 82" Position="0.5"></telerik:GradientElement>
                                    <telerik:GradientElement Color="210, 157, 44" Position="1"></telerik:GradientElement>
                                </ComplexGradient>
                            </FillSettings>
                        </FillStyle>
                        <TextAppearance TextProperties-Color="112, 93, 56">
                        </TextAppearance>
                        <Border Color="223, 170, 40"></Border>
                    </Appearance>
                </telerik:ChartSeries>
                <telerik:ChartSeries DataYColumn="size1" Name="Size" Type="Pie">
                    <Appearance>
                        <FillStyle FillType="ComplexGradient" MainColor="154, 220, 230">
                            <FillSettings>
                                <ComplexGradient>
                                    <telerik:GradientElement Color="154, 220, 230" />
                                    <telerik:GradientElement Color="121, 207, 220" Position="0.5" />
                                    <telerik:GradientElement Color="89, 185, 204" Position="1" />
                                </ComplexGradient>
                            </FillSettings>
                        </FillStyle>
                        <TextAppearance TextProperties-Color="112, 93, 56">
                        </TextAppearance>
                        <Border Color="117, 177, 192" />
                    </Appearance>
                </telerik:ChartSeries>
            </Series>
          
         
        </telerik:RadChart>
        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:sagploConnectionString %>"
            SelectCommand="declare @aa as varchar(255);set @aa='1073741824' select(select @aa )as tsize, (SELECT isnull(sum([size1]),0) FROM [treeview] WHERE ([nodetype] = 'file'))as size1">
        </asp:SqlDataSource>
    </div>


i want to know that how to merge my both pie chart.
Jack
Top achievements
Rank 1
 answered on 24 Feb 2011
3 answers
320 views
Hi guys,
I have following code in aspx:

<

 

td align="center" class="TD" style="width: 93px; height: 5px" valign="middle">

 

 

<asp:TextBox ID="TextBoxSec4Date1" runat="server" BackColor="LightSteelBlue" BorderStyle="None"

 

 

contentEditable="false" Font-Size="X-Small" MaxLength="10" Style="left: 0px;

 

 

position: relative"

 

Width="55px"></asp:TextBox>

 

 

<asp:Image ID="Image1" runat="server" BackColor="Black" BorderStyle="Solid" Height="16px"

 

 

ImageUrl="../Image/icon-calendar.gif"

 

 

Style="left: 3px; position: relative; top: 3px" Width="23px" />

 

 

</td>

 


When user click on image calendar pop ups and placed in textbox.
How can I do that?
Thanks so much for your help
Shinu
Top achievements
Rank 2
 answered on 24 Feb 2011
5 answers
235 views
First :
i have two problems when i export a radgrid when i export to pdf as follows :-
1) The header texts are outside the header cells
2) The grid content is half hidden and half visible to me (as it needs a scroll bar to show the rest of the table horizontally)
-The attached file shows the issue.
hint: the grid have autogenerated columns

Second:
This grid has autogenerated columns and i want to control the width of each column to fit the data within it.
Daniel
Telerik team
 answered on 23 Feb 2011
3 answers
161 views
Guys,

Today, I have nearly pulled all of my hair out. After hours of searching and recreation, etc, I have nailed my problem down to a mixture of this article and one line in my web.config.

<add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
Here is a detailed version of the problem!

I have 2 windows open, one pointing to "http://www.xyz.com/" (a) and "http://www.xyz.com/default.aspx" (b).

If I try to login from (a), the events are not caught (basically causing a refresh).
If I try to login from (b), the events are caught.

If I remove the web.config entry above, (a) begins to work (events are working).

Is this a known problem? If so, is there a fix?

Thanks
Ryan
Alex
Top achievements
Rank 1
 answered on 23 Feb 2011
5 answers
319 views
I have windows 7, which has visual studio 2005, 2008 and 2010.
and Telerik Asp.net Ajax controls.

I am trying to run an visual studio 2010 asp.net application and I am getting this(shown in the image) error now days.

I am not able to find any working solution till now.

could you please help me out here.

Here is my config file code.

=============================================================================
<?xml version="1.0"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    \Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
  <appSettings>
    <add key="ViewStateTimeout" value="61" />
    <add key="LicensesLocation" value="D:\Inetpub\www\CEMG\Licenses\" />
    <add key="UploadsLocation" value="D:\Inetpub\www\CEMG\Uploads\" />
    <add key="WebDirectory" value="D:\Inetpub\www\CEMG\" />
    <add key="BaseURL" value="https://cemgpms.cemginc.com/" />
    <add key="ExchangeAddress" value="https://gdmail.gd-ltd.com/exchange/"/>
    <add key="DomainName" value="gd-ltd"/>
    <!--This Belongs to Aaron-->
    <add key="Aaron_LicensesLocation" value="C:\Inetpub\wwwroot\CEMG\Licenses\" />
    <add key="Aaron_UploadsLocation" value="C:\Inetpub\wwwroot\CEMG\Uploads\" />
    <add key="Aaron_WebDirectory" value="C:\Inetpub\wwwroot\CEMG\" />
    <add key="Aaron_BaseURL" value="http://aaronspilman/" />
    <add key="Aaron_ExchangeAddress" value="https://gdmail.gd-ltd.com/exchange/"/>
    <add key="Aaron_DomainName" value="gd-ltd"/>
    <add key="AARONSPILMAN" value="Aaron" />
    <!--This Belongs to Deepka81-->
   <add key="Deepak_LicensesLocation" value="D:\work\CEMG Data\CEMG\Licenses\" />
    <add key="Deepak_UploadsLocation" value="D:\work\CEMG Data\CEMG\Uploads\" />
    <add key="Deepak_WebDirectory" value="D:\work\CEMG Data\CEMG\" />
    <add key="Deepak_BaseURL" value="http://DeepakYadav81/" />
    <add key="Deepak_ExchangeAddress" value="http://exch.stylus.net/exchange/"/>
    <add key="Deepak_DomainName" value="stylus"/>
    <add key="DeepakYadav81" value="Deepak" />

    
    <add key="ProductionConnectionString" value="CEMGConnectionString" />
    <add key="ChartImageHandler" value="storage=file;timeout=20;dir=D:\Inetpub\www\CEMG\images\;" />
  </appSettings>

  <system.web>
    <sessionState timeout="60" />
    <!-- Fix the Timeout issue when uploading a large file -->
    <httpRuntime maxRequestLength="512000" executionTimeout="54000" />
    <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.

            Visual Basic options:
            Set strict="true" to disallow all data type conversions
            where data loss can occur.
            Set explicit="true" to force declaration of all variables.
        -->
    <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.
        -->
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
      </assemblies>
      <buildProviders>
        <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
      </buildProviders>
    </compilation>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
      <namespaces>
        <clear />
        <add namespace="System" />
        <add namespace="System.Collections" />
        <add namespace="System.Collections.Generic" />
        <add namespace="System.Collections.Specialized" />
        <add namespace="System.Configuration" />
        <add namespace="System.Data" />
        <add namespace="System.Data.SqlClient" />
        <add namespace="System.Text" />
        <add namespace="System.Text.RegularExpressions" />
        <add namespace="System.Web" />
        <add namespace="System.Web.Caching" />
        <add namespace="System.Web.SessionState" />
        <add namespace="System.Web.Security" />
        <add namespace="System.Web.Profile" />
        <add namespace="System.Web.UI" />
        <add namespace="System.Web.UI.WebControls" />
        <add namespace="System.Web.UI.WebControls.WebParts" />
        <add namespace="System.Web.UI.HtmlControls" />
        <add namespace="System.Linq" />
        <add namespace="System.Xml.Linq" />
      </namespaces>
      <controls>
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
        <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      </controls>
    </pages>
    <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
    <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
    <authentication mode="Windows" />
    <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    <customErrors mode="Off" />
    <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    <httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource"
        validate="false" />
      <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler"
        validate="false" />
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler"
        validate="false" />
      <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler"
        validate="false" />
      <add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.RadUploadProgressHandler"
        validate="false" />
      <add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        validate="false" />
      <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
        validate="false" />
      <add path="ImageThumbnail.ashx" verb="*" type="Thumbnails" validate="false"/>
      
    </httpHandlers>
    <httpModules />
  </system.web>
  <!--
        The system.webServer section is required for running ASP.NET AJAX under Internet
        Information Services 7.0.  It is not necessary for previous version of IIS.
    -->
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      <remove name="ChartImage_axd" />
      <remove name="Telerik_Web_UI_SpellCheckHandler_axd" />
      <remove name="Telerik_Web_UI_DialogHandler_aspx" />
      <remove name="Telerik_RadUploadProgressHandler_ashx" />
      <remove name="Telerik_Web_UI_WebResource_axd" />
      <remove name="ChartImageHandler" />
      <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" />
      <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" />
      <add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </handlers>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="524288000" />
      </requestFiltering>
    </security>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>
</configuration>
Dominios Molinos
Top achievements
Rank 1
 answered on 23 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?