Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
86 views
I have a very unusual problem.After adding the property ShowContentDuringLoad="False" at rad window a scroll bar appears at radgrid inside the rad window.Can you please help. My telerik version is Q2 2013. Please check the attached image.
Venelin
Telerik team
 answered on 19 Sep 2013
3 answers
249 views
After spending 2 days trying to refresh the parent page when the rad window is closed. I was finally able to get somewhere. If I set the OnClientClose in the RadWindowManager my javascript function fires if I set it in the RadWindow it does not fire. Is this intended? What is the point of the OnClientClose in the RadWindow?
Shinu
Top achievements
Rank 2
 answered on 19 Sep 2013
1 answer
84 views
i have the following grid that i am trying to export to PDF
<telerik:RadGrid ID="RadGrid1" runat="server" OnItemCreated="RadGrid1_ItemCreated" OnItemCommand="RadGrid1_ItemCommand" AutoGenerateColumns="false"<br>        AllowSorting="True" CellSpacing="0" GridLines="None" ShowHeader="false"><br>        <GroupingSettings RetainGroupFootersVisibility="True" /><br>        <ClientSettings><br>            <Scrolling UseStaticHeaders="false" /><br>        </ClientSettings><br>        <MasterTableView CommandItemDisplay="Top"><br>            <CommandItemSettings ShowExportToExcelButton="false" ShowAddNewRecordButton="false" ShowRefreshButton="false" ShowExportToPdfButton="true"></CommandItemSettings><br><ItemTemplate><br>                <asp:Panel ID="ItemContainer" CssClass='<%# (((GridItem)Container).ItemType == GridItemType.Item)? "item" : "alternatingItem" %>'<br>                    runat="server"><br>                    <table class="no-border"><br>                        <tbody><br>                            <tr><br>                                <td class="catalog-item-img"><br>                                    <img id="Img1" runat="server" src='<%# ResolveUrl("~/Service.ashx?model=document&action=DOWNLOAD&currentLanguageId="+Eval("ProducedLanguage.Id")+"&Type=Cover") %>' width="150" height="200" /><br>                                </td><br>                                <td class="catalog-item"><br>                                    <h5><br>                                        <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# "~/ViewPublication.aspx?id="+Eval("MasterPublication.Id")+"&tab=i&ln="+Eval("PublicationId")%>'><%#Eval("ProducedLanguage.Title") %> </asp:HyperLink><br>                                    </h5><br>                                    <p><br>                                        <strong>Language: </strong><br>                                        <asp:Label runat="server" ID="lblLanguage" Text='<%#Eval("ProducedLanguage.Language.Name") %>'></asp:Label><br>                                        - <strong>Isbn: </strong><br>                                        <asp:Label runat="server" ID="lblIsbn" Text='<%#Eval("ProducedLanguage.Isbn") %>'></asp:Label><br>                                        - <strong>Year: </strong><br>                                        <asp:Label runat="server" ID="Label3" Text='<%#Eval("Year") %>'></asp:Label><br>                                        - <strong>Pages: </strong><br>                                        <asp:Label runat="server" ID="lblPages" Text='<%#Eval("Pages") %>'></asp:Label><br>                                        <br /><br>                                        <strong>Category: </strong><br>                                        <asp:Label runat="server" ID="Label1" Text='<%#GetContentGroups(Eval("MasterPublication") as ItcPublications.Models.MasterPublication) %>'> </asp:Label><br>                                        - <strong>Sales price: </strong><br>                                        <asp:Label runat="server" ID="Label2" Text='<%#Eval("UnitPrice")+" $" %>'></asp:Label><br>                                    </p><br>                                    <div><br>                                        <asp:Label runat="server" ID="lblBlurb" Text='<%#Eval("ProducedLanguage.MarketingBlurb") %>'></asp:Label><br>                                    </div><br>                                </td><br>                            </tr><br>                        </tbody><br>                    </table><br>                </asp:Panel><br>            </ItemTemplate><br></MasterTableView><br>        <ExportSettings SuppressColumnDataFormatStrings="false" IgnorePaging="true" FileName="MostPopularPublications"><br>            <Pdf Author="ITC" Creator="ITC" Subject="Marketing Catalog" Title="Marketing Catalog" DefaultFontFamily="Arial, Helvetica, Geneva, Swiss, SunSans-Regular" PageLeftMargin="10" PageRightMargin="7" /><br>        </ExportSettings><br>        <ItemStyle ForeColor="#0066cc" /><br>    </telerik:RadGrid>
This always renders an empty page. whenever i remove the table, it works.
does anyone know how to achieve this?

thanks
Princy
Top achievements
Rank 2
 answered on 19 Sep 2013
0 answers
96 views
Hi,

Recently want to increase the speed of my website so I plan to use Scriptmanager to imports from CDN. But I receive error 'WebForm_InitCallBack' for RadCombobox on my page. I have a scriptmanager and updatepanel, inside the updatepanel have few controls and one of the control is radcombobox. The EnabledCDN property of the Scriptmanager set to True.
Can anybody help me? Thanks in advance.
Dylan
Top achievements
Rank 2
 asked on 19 Sep 2013
3 answers
209 views
I am trying to use the logic from the demo project listed here (http://demos.telerik.com/aspnet-ajax/tabstrip/examples/multipage/dynamic-pageview-creation/defaultvb.aspx), but It's not working as expected.

First, the onTabSelecting javascript is not finding previous pageViewId's and it keeps posting back.
Second, the code "e.Tab.PageView.Selected = True" in the TabClick event in the codebehind is throwing an error, "Object reference not set to an instance of an object." Upon inspection, e.Tab is showing it is a valid RadTab, but the PageView is Nothing.

I looked at everything, and it all looks correct. I have some logic to dynamically create the tabs and load the ascx into pageviews based upon a saved path in the database. The default.aspx uses a nested master, with the AjaxManager in the child master. It's setup like this:

Site.Master ---> Child.Master ---> Default.aspx

Here is the Default.aspx page.
<%@ Page Title="Home Page" Language="VB" MasterPageFile="~/Child.Master" AutoEventWireup="true" CodeBehind="Default.aspx.vb" Inherits="MainApp._Default" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 
<asp:Content runat="server" ID="LeftNav" ContentPlaceHolderID="ChildContentLeftPanel">
        <telerik:RadCalendar ID="RadCalendar1" runat="server" Skin="Forest" >
            <WeekendDayStyle CssClass="rcWeekend" />
            <CalendarTableStyle CssClass="rcMainTable"/>
            <OtherMonthDayStyle CssClass="rcOtherMonth"/>
            <OutOfRangeDayStyle CssClass="rcOutOfRange"/>
            <DisabledDayStyle CssClass="rcDisabled"/>
            <SelectedDayStyle CssClass="rcSelected"/>
            <DayOverStyle CssClass="rcHover"/>
            <FastNavigationStyle CssClass="RadCalendarMonthView RadCalendarMonthView_Forest"/>
            <ViewSelectorStyle CssClass="rcViewSel"/>           
        </telerik:RadCalendar>
</asp:Content>
 
<asp:Content runat="server" ID="NavigationContent" ContentPlaceHolderID="ChildContent1">
    <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" Skin="Forest"/>
 
    <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server" >
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="NavTabStrip">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="NavTabStrip"></telerik:AjaxUpdatedControl>
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" LoadingPanelID="LoadingPanel1"></telerik:AjaxUpdatedControl>
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadMultiPage1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>
 
    <script type="text/javascript">
        function onTabSelecting(sender, args) {
 
            if (args.get_tab().get_pageViewID()) {
                args.get_tab().set_postBack(false);
            }
        }
    </script>
 
    <div class="exampleWrapper">
        <telerik:RadTabStrip ID="NavTabStrip" runat="server" SelectedIndex="0" MultiPageID="RadMultipPage1" Skin="Forest" Align="Justify"
            OnTabClick="NavTabStrip_TabClick" OnClientTabSelecting="onTabSelecting" />
        <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" OnPageViewCreated="RadMultiPage1_PageViewCreated" />
 
    </div>
 
 
</asp:Content>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="ChildContent2">
 
</asp:Content>


Here is the VB code.
Imports System
Imports Telerik.Web.UI
 
Partial Public Class _Default
    Inherits System.Web.UI.Page
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
        If Not Page.IsPostBack Then
            SetStoreID(Page.Master)
            Dim dal As Navigation = New Navigation
 
            Dim ds As DataSet = dal.NavigationSelect(0)
            Dim bAddPageView As Boolean = True
            Dim sObjectPath As String = String.Empty
 
            For Each row As DataRow In ds.Tables(0).Rows
                If IsDBNull(row.Item("ObjectPath")) Then
                    sObjectPath = String.Empty
                Else
                    sObjectPath = row.Item("ObjectPath")
                End If
                AddTab(row.Item("NavName"), sObjectPath, bAddPageView)
                bAddPageView = False
            Next
        End If
 
    End Sub
    Private Sub SetStoreID(ByVal sender As Object)
        Dim sStoreID As String
 
        Dim DAL As Store = New Store
        sStoreID = DAL.StoreCurrentStoreIDSelect
 
        Dim StoreID As HiddenField = FindControlRecursive(sender, "StoreID")
 
        StoreID.Value = sStoreID
 
    End Sub
 
    Private Sub AddTab(ByVal tabName As String, ByVal ObjectPath As String, ByVal bAddPageView As Boolean)
        Dim tab As RadTab = New RadTab
 
        tab.Text = tabName
        tab.Attributes.Add("ObjectPath", ObjectPath)
 
        NavTabStrip.Tabs.Add(tab)
        If bAddPageView Then
            AddPageView(tab)
        End If
 
    End Sub
    Protected Sub RadMultiPage1_PageViewCreated(ByVal sender As Object, ByVal e As RadMultiPageEventArgs) Handles RadMultiPage1.PageViewCreated
        Dim tab As RadTab = NavTabStrip.SelectedTab
 
        Dim userControlName As String = tab.Attributes("ObjectPath")
 
        Dim userControl As Control = Page.LoadControl(userControlName)
 
        userControl.ID = e.PageView.ID & "_userControl"
        e.PageView.Controls.Add(userControl)
    End Sub
 
    Private Sub AddPageView(ByVal tab As RadTab)
        Dim pageView As RadPageView = New RadPageView
 
        pageView.ID = tab.Text
        RadMultiPage1.PageViews.Add(pageView)
        tab.PageViewID = pageView.ID
        pageView.Selected = True
    End Sub
    Protected Sub NavTabStrip_TabClick(ByVal sender As Object, ByVal e As RadTabStripEventArgs) Handles NavTabStrip.TabClick
        'Dim pageView As RadPageView = RadMultiPage1.FindControl(e.Tab.Text.Replace(" ", ""))
 
        'If IsNothing(pageView) Then
 
        AddPageView(e.Tab)
        'End If
        e.Tab.PageView.Selected = True
    End Sub
 
    Private Shared Function FindControlRecursive(Root As Control, Id As String) As Control
 
        If Root.ID = Id Then
            Return Root
        End If
 
        For Each Ctl As Control In Root.Controls
 
            Dim FoundCtl As Control = FindControlRecursive(Ctl, Id)
 
            If FoundCtl IsNot Nothing Then
                Return FoundCtl
            End If
        Next
 
        Return Nothing
 
    End Function
End Class
Steve
Top achievements
Rank 1
 answered on 18 Sep 2013
5 answers
275 views
Hi i want a watermark on the filter in the RadGridview.

How to make water mark as "search" in the filter textbox in RadGrid in asp.net?
Monte
Top achievements
Rank 1
 answered on 18 Sep 2013
2 answers
202 views
Hi telerik-Support

I add all series manually via code-behind. The values for x-axis are dates and for y-axis are ints.
After render to the client the tool-tip shows the milliseconds of the date. You can see it on the attached file.

On code-behind I configure the series item like this:

...
lineSeries.LabelsAppearance.DataFormatString = "{1}";
lineSeries.TooltipsAppearance.DataFormatString = "{1}<br/>{0:d}";
...

How can I archive that on client side the date would be shown and not the milliseconds.

Thanks,
Christian

 
Danail Vasilev
Telerik team
 answered on 18 Sep 2013
2 answers
194 views
I have several controls which were ajaxified using RadAjaxManager and I'm now trying to download a PDF. I understand 
the issues with not being able to use Response.WriteFile (callbacks don't work...full postbacks do). I found 
the following link on your site about using the ResponseScripts collection to get around this issue, i.e.,
  
  
RadAjaxManager1.ResponseScripts.Add(String.Format(@"window.location.href = ""{0}"";", "http://yoursite.com/Your_File"));
  
This works fine...but the file appears in the existing browser window...I do not get the file download dialog.
  
Is there a way to add something similar to the following "content-disposition" header (with the attachment attribute)...so the download 
file dialog appears?  I need the downloaded file to appear in a separate window.
  
Response.AppendHeader("content-disposition", "attachment; filename = " + Path.GetFileName(fileName));
David
Top achievements
Rank 1
 answered on 18 Sep 2013
4 answers
267 views
I have searched this site a bit trying to find where someone has to have done this before with the Scheduler ????
I need a simple way to convert a recurrence rule from how it's stored in the database to a descriptive sentence such as "Occurs every Monday for the next 5 weeks"

Searching parse recurrence rule, etc. brings back nothing but people trying to re-write the recurrence rule :)

Thanks,
Kevin
Plamen
Telerik team
 answered on 18 Sep 2013
3 answers
240 views

Hi
My project is giving me massive errors on the production side now for quite some time. I have gone through so many tuts/blogs regarding padding is invalid that I can't even count them now. Would one of the telerik guys be so kind to confirm my web.config wrt to the correct references
I only have the telerik.Web.UI.dll in my bin along with the .xml Version 2008.3.1504.20
I have completely run out of solutions at this point to figuring out what the issue with the padding and webresouce errors are due to.

sample error:
Padding is invalid and cannot be removed. at http://site/WebResource.axd?d=oBsiqcMrm5nH5SAVxvosPC0Vc1ptlvEUkX9cSPr5X64Xbdi6YL-7HQHfp_UBG0aYUqgzi6PR0Wm78GIlS_x2YfJZ0VImFe6UIuHLRB723Ow1&t=633716706420000000

System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed. at System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast) at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount) at System.Security.Cryptography.CryptoStream.FlushFinalBlock() at System.Web.Configuration.MachineKeySection.EncryptOrDecryptData(Boolean fEncrypt, Byte[] buf, Byte[] modifier, Int32 start, Int32 length, Boolean useValidationSymAlgo) at System.Web.UI.Page.DecryptString(String s) at System.Web.Handlers.AssemblyResourceLoader.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)Generated by:
-----------------------------------
and
---------------------------
This is an invalid script resource request. at http://site/ScriptResource.axd?d=bh6HBmlsxIGC4XFPMrp4DPh7BlJcKL55VvtVhshd3IDfZNRv5UnaQg93PCuiDZW07NH_goVZOyPgn36ooWTrW2Dy9C4KvW5zOMaqHsKjshsa11Wf0&t=634237042885176818

System.Web.HttpException: This is an invalid script resource request. at System.Web.Handlers.ScriptResourceHandler.Throw404() at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context) at System.Web.Handlers.ScriptResourceHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)Generated by:
---------------------------------------------------------
SAMPLE WEB.CONFIG

<?xml version="1.0"?>
<configuration>
 <configSections>
  <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />

  <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
   <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
    <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
     <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/>
     <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
     <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
    </sectionGroup>
   </sectionGroup>
  </sectionGroup>
 </configSections>
 
 <appSettings>
  
  <add key="SiteTitle" value="NAME"/>
  <add key="Telerik.Skin" value="Office2007"/>
  <add key="Telerik.Menu.Skin" value="Outlook"/>
 </appSettings>
 <connectionStrings>

 </connectionStrings>
 <system.web>
  <machineKey validationKey='FFAA4F816016807C65F85DAEE6F2A0A263D73657DAE5AEDA2773BA4E56DCCF7B1C1AF651D3052A25E7E8B67D27F32C35BD34D57782F046C86B9E3E21FE877A24' 
 decryptionKey='535CDECB1832BBC6530978A6EBC4449EC1578E24903FF8F5'
  validation='SHA1'/>
 <profile defaultProvider="Conn" enabled="true">
   <providers>
    <clear/>
    <add name="Conn" connectionStringName="aspnetconn" applicationName="/UA" type="System.Web.Profile.SqlProfileProvider"/>
   </providers>
   <properties>
   <add name="Pet" allowAnonymous="false" type="Pet" serializeAs="Binary"/>
   <add name="UserProfile" allowAnonymous="false" type="UserProfile"/> 
   </properties>
  </profile>
 
  <membership>
   <providers>
    <remove name="AspNetSqlMembershipProvider" />
    <add connectionStringName="aspnetconn" applicationName="/UA"
     name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
   </providers>
  </membership>
  <customErrors mode="On" defaultRedirect="~/errors/404.aspx"/>
  <siteMap defaultProvider="XmlSiteMapProvider" enabled="true">
   <providers>
    <clear/>
    <add name="XmlSiteMapProvider"  description="Default SiteMap provider."   type="System.Web.XmlSiteMapProvider"   siteMapFile="Web.sitemap"       securityTrimmingEnabled="true"/>
    <add type="System.Web.XmlSiteMapProvider" name="LeadersSiteMap" siteMapFile="~/Leaders.sitemap" />
   </providers>
  </siteMap>
  <authentication mode="Windows" />
  
<roleManager enabled="true">
 <providers>
  <remove name="AspNetSqlRoleProvider" />
  <add connectionStringName="aspnetconn" applicationName="/UA"   name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  <remove name="AspNetWindowsTokenRoleProvider" />
  <add applicationName="/UA" name="AspNetWindowsTokenRoleProvider"   type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
 </providers>
</roleManager>
  <pages theme="HRApps" validateRequest="false" enableEventValidation="false" viewStateEncryptionMode="Never">
   <controls>
    <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   </controls>
  </pages>
   <compilation debug="true">
   <assemblies>
    <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
    <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
   </assemblies>
  </compilation>
  <httpHandlers>
   <remove path="*.asmx" verb="*"/>
   <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
   <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" validate="false"/>
   <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
   <add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
   <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.3.1504.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
   <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2008.3.1504.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
  </httpHandlers>
  <httpModules>
   <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter"/>
  </httpModules>
 </system.web>
 <system.webServer>
  <validation validateIntegratedModeConfiguration="false"/>
  <modules>
   <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
  </modules>
  <handlers>
   <remove name="WebServiceHandlerFactory-Integrated"/>
   <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
   <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
  </handlers>
 </system.webServer>
 <system.net>
  <mailSettings>
   
   <smtp from="OPS@domain.bc.ca">
    <network defaultCredentials="true" host="" password="" userName=""/>
   </smtp>
  </mailSettings>
 </system.net>
<rewriter>
 
 
</rewriter>
 
<location path="errors.aspx">
  <system.web>
    <authorization>
    <allow roles="BetaTester,Admin"/>
     <deny users="*"/>
   </authorization>
  </system.web>
 </location>
 <location path="HRAssistants.aspx">
  <system.web>
   <authorization>
    <allow roles="Admin"/>
    <deny users="*"/>
   </authorization>
  </system.web>
 </location>
</configuration>

ST
Top achievements
Rank 1
 answered on 18 Sep 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?