Hi Guys,
I was hoping you could take a look at the below and let me know if its something you may have experienced before.
I have a page setup as below:
The problem I am having is the introduction of the upload path in the code behind. As soon as I introduce this line, Internet Explorer is no longer able to pull through any of the styles within the style sheet inserted above.
I have searched around and couldn't find anything relating to similar issues and was hoping you guys might have seen something similar before.
The style sheet works perfectly on all other pages in all browsers, just not in IE when the radfileexplorer's upload path is introduced.
Many thanks.
Jibber4568
I was hoping you could take a look at the below and let me know if its something you may have experienced before.
I have a page setup as below:
<%If Request.Url.AbsoluteUri.ToLower().Contains("site1url/login") Then%><link href="site1url/Css/style.css" rel="stylesheet" type="text/css" /><%Else%><link href="site2url/Css/style.css" rel="stylesheet" type="text/css" /><%End If%> <div class="TopBar"><label class="FloatRight TopBarPageTitle CursorArrow"><h1>File Manager</h1></label></div> <div class="ControlWrapper"> <div class="tabStripContainer"> <telerik:RadTabStrip ID="Radtabstrip1" runat="server" Width="100%" MultiPageID="MultiPage1" SelectedIndex="0" TextOnlyTabs="False" EnableEmbeddedSkins="False" Skin="CustSkin"> <Tabs> <telerik:RadTab ToolTip="Image Manager" Text="Image Manager" PageViewID="Page3"></telerik:RadTab> <telerik:RadTab ToolTip="Document Manager" Text="Document Manager" PageViewID="Page1"></telerik:RadTab> </Tabs> </telerik:RadTabStrip> <div class="SubSectionWithBorder"> <telerik:RadMultiPage ID="MultiPage1" runat="server" Width="100%" SelectedIndex="0"> <telerik:RadPageView ID="Page3" runat="server"> <fieldset> <legend><h2>Image Manager</h2></legend> <telerik:RadFileExplorer ID="imageExplorer" TreePaneWidth="200px" Width="100%" height="500px" runat="Server" EnableOpenFile="false" AllowPaging="true" PageSize="15" BorderWidth="1" BorderColor="Gray"> </telerik:RadFileExplorer> </fieldset> </telerik:RadPageView> </telerik:RadMultiPage> </div> </div></div>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load docExplorer.Configuration.ViewPaths = New String() {path1} docExplorer.Configuration.UploadPaths = New String() {path1} docExplorer.Configuration.DeletePaths = New String() {path1} docExplorer.Configuration.SearchPatterns = New String() {"*.doc", "*.txt", "*.docx", "*.xls", "*.xlsx", "*.pdf", "*.zip"} docExplorer.Configuration.MaxUploadFileSize = 5120000End SubThe problem I am having is the introduction of the upload path in the code behind. As soon as I introduce this line, Internet Explorer is no longer able to pull through any of the styles within the style sheet inserted above.
I have searched around and couldn't find anything relating to similar issues and was hoping you guys might have seen something similar before.
The style sheet works perfectly on all other pages in all browsers, just not in IE when the radfileexplorer's upload path is introduced.
Many thanks.
Jibber4568