Hello,
I was wondering how I would change the values of some of the generated code, specifically an image that has it's src set to "info" which creates a 404 error that I am catching using Fiddler. Here is the view source of the generated HTML:
specifically this line:
and the aspx html before running:
Thanks
I was wondering how I would change the values of some of the generated code, specifically an image that has it's src set to "info" which creates a 404 error that I am catching using Fiddler. Here is the view source of the generated HTML:
<div id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow" disabled="disabled" style="display:none;"> <div id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_popup" class="RadNotification RadNotification_campDashboardNotification" style="height:53px;display:none;position:absolute;"> <div class="rnTitleBar" id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_titlebar" style="display:none;"> <span class="rnTitleBarIcon"><img src="info" alt="" /></span><span class="rnTitleBarTitle"></span><ul class="rnCommands"> <li class="rnCloseIcon"><a href="href" title="Close" id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_rnCloseIcon"></a></li> </ul> </div><div id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_XmlPanel" class="RadXmlHttpPanel"> <div id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_C" class="rnContentWrapper"> <img src="../images/WarningIcon.png" alt="Warning" /> Warning: Please ensure you are using a browser that Campaigner currently supports. <a href="#" onclick="ShowBrowserSupportWindow();return false;">Learn More</a> <a href="#" onclick="closeNotificationWindow(); return false;" class="lnkClose"> <img src="../Skins/Custom/Notification/campDashboardNotification_close.gif" alt="close" /> </a> </div><input type="hidden" name="ctl00$ctl00$ctl00$ContentPlaceHolder1$ContentPlaceHolder1$ContentPlaceHolder1$radNotificationWindow$hiddenState" id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_hiddenState" /><input id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_XmlPanel_ClientState" name="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_XmlPanel_ClientState" type="hidden" /> </div><div id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_TitleMenu"> <div class="RadMenu RadMenu_campDashboardNotification RadMenu_Context RadMenu_campDashboardNotification_Context "> </div><input class="rmActive rmVertical rmGroup rmLevel1" id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_TitleMenu_ClientState" name="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_TitleMenu_ClientState" type="hidden" /> </div> </div><input id="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_ClientState" name="ctl00_ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder1_ContentPlaceHolder1_radNotificationWindow_ClientState" type="hidden" /></div>specifically this line:
<img src="info" alt="" />and the aspx html before running:
<telerik:RadNotification ID="radNotificationWindow" runat="server" OnClientShown="OnClientShown" Skin="campDashboardNotification" Height="53" VisibleOnPageLoad="true" Pinned="true" Position="TopLeft" AutoCloseDelay="6000" EnableEmbeddedSkins="false" VisibleTitlebar="false" > <ContentTemplate> <img src="../images/WarningIcon.png" alt="Warning" /> Warning: Please ensure you are using a browser that Campaigner currently supports. <a href="#" onclick="ShowBrowserSupportWindow();return false;">Learn More</a> <a href="#" onclick="closeNotificationWindow(); return false;" class="lnkClose"> <img src="../Skins/Custom/Notification/campDashboardNotification_close.gif" alt="close" /> </a> </ContentTemplate> </telerik:RadNotification>Thanks