Dear all,
I'm currently our portal inside my company usually the user upload files. everything is working fine.
i tried to link the location of the files using gridview, the problem the link location within our network like this "\\portal\TS\RFP\8971\Sales\RFQ.pdf"
one the user click on the file using IE8.0 the page is response as "Internet Explorer cannot display the webpage" once i refresh the file is open and work fine while in FireFox it's not working at all.
how i can solve this issue
thanks for your support in advanced
I'm currently our portal inside my company usually the user upload files. everything is working fine.
i tried to link the location of the files using gridview, the problem the link location within our network like this "\\portal\TS\RFP\8971\Sales\RFQ.pdf"
one the user click on the file using IE8.0 the page is response as "Internet Explorer cannot display the webpage" once i refresh the file is open and work fine while in FireFox it's not working at all.
how i can solve this issue
thanks for your support in advanced
3 Answers, 1 is accepted
0
Hello Mohammed,
Could you please let me know what the RadGrid structure on your page is and how exactly you are trying to access the uploaded files? Also pleas let me know if the mentioned patch works correctly if it is used out of RadGrid control. Some more information on your application and the exact functionality you need to achieve will help us provide more to-the-point answer.
Kind regards,
Maria Ilieva
the Telerik team
Could you please let me know what the RadGrid structure on your page is and how exactly you are trying to access the uploaded files? Also pleas let me know if the mentioned patch works correctly if it is used out of RadGrid control. Some more information on your application and the exact functionality you need to achieve will help us provide more to-the-point answer.
Kind regards,
Maria Ilieva
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0

Mohammed
Top achievements
Rank 1
answered on 15 Apr 2011, 01:02 AM
Hi Maria,
just to summarize my website, this system is build to help sales and presales team that sales team when they get new request for quotation they open a call in the system and specifies many items as well as uploading copy of RFP or RFQ. once the call is uploaded to our file server via radupoloader. the database will be update with location of new file as well as name.
kindly find below my SQL statement as well as code for ASP grid
<telerik:RadGrid ID="RadGrid2" runat="server" DataSourceID="FileLocation"
Skin="Office2007" ShowGroupPanel="True" GridLines="None">
<GroupingSettings RetainGroupFootersVisibility="True" />
<ClientSettings AllowDragToGroup="True">
</ClientSettings>
<GroupPanel EnableTheming="True" ViewStateMode="Disabled">
</GroupPanel>
<MasterTableView AutoGenerateColumns="False" DataSourceID="FileLocation"
GroupLoadMode="Server" GroupsDefaultExpanded="true" >
<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField FieldAlias="FileLocation" FieldName="Description"></telerik:GridGroupByField>
</SelectFields>
<GroupByFields>
<telerik:GridGroupByField FieldName="Description"></telerik:GridGroupByField>
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="AccountName" DefaultInsertValue=""
HeaderText="AccountName" SortExpression="AccountName" UniqueName="AccountName">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Description" DefaultInsertValue=""
HeaderText="Description" SortExpression="Description"
UniqueName="Description" Visible="False">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Location" DefaultInsertValue=""
HeaderText="Location" SortExpression="Location" UniqueName="Location"
Visible="False">
</telerik:GridBoundColumn>
<telerik:GridHyperLinkColumn DataNavigateUrlFields="Location"
DataNavigateUrlFormatString="{0}" DataTextField="Location"
UniqueName="column" HeaderText="Location">
</telerik:GridHyperLinkColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
<asp:SqlDataSource ID="FileLocation" runat="server"
ConnectionString="<%$ ConnectionStrings:TSDATA2ConnectionString %>"
SelectCommand="SELECT AccountManager.AccountName, FileManagement.Description, FileManagement.Location FROM FileManagement INNER JOIN AccountManager ON FileManagement.Insertedby = AccountManager.AMNo WHERE (FileManagement.LogNumber = @LogNumber)">
<SelectParameters>
<asp:QueryStringParameter DbType="Int32" Name="LogNumber"
QueryStringField="Q" />
</SelectParameters>
</asp:SqlDataSource>
thanks for your great support
just to summarize my website, this system is build to help sales and presales team that sales team when they get new request for quotation they open a call in the system and specifies many items as well as uploading copy of RFP or RFQ. once the call is uploaded to our file server via radupoloader. the database will be update with location of new file as well as name.
kindly find below my SQL statement as well as code for ASP grid
<telerik:RadGrid ID="RadGrid2" runat="server" DataSourceID="FileLocation"
Skin="Office2007" ShowGroupPanel="True" GridLines="None">
<GroupingSettings RetainGroupFootersVisibility="True" />
<ClientSettings AllowDragToGroup="True">
</ClientSettings>
<GroupPanel EnableTheming="True" ViewStateMode="Disabled">
</GroupPanel>
<MasterTableView AutoGenerateColumns="False" DataSourceID="FileLocation"
GroupLoadMode="Server" GroupsDefaultExpanded="true" >
<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField FieldAlias="FileLocation" FieldName="Description"></telerik:GridGroupByField>
</SelectFields>
<GroupByFields>
<telerik:GridGroupByField FieldName="Description"></telerik:GridGroupByField>
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="AccountName" DefaultInsertValue=""
HeaderText="AccountName" SortExpression="AccountName" UniqueName="AccountName">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Description" DefaultInsertValue=""
HeaderText="Description" SortExpression="Description"
UniqueName="Description" Visible="False">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Location" DefaultInsertValue=""
HeaderText="Location" SortExpression="Location" UniqueName="Location"
Visible="False">
</telerik:GridBoundColumn>
<telerik:GridHyperLinkColumn DataNavigateUrlFields="Location"
DataNavigateUrlFormatString="{0}" DataTextField="Location"
UniqueName="column" HeaderText="Location">
</telerik:GridHyperLinkColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
<asp:SqlDataSource ID="FileLocation" runat="server"
ConnectionString="<%$ ConnectionStrings:TSDATA2ConnectionString %>"
SelectCommand="SELECT AccountManager.AccountName, FileManagement.Description, FileManagement.Location FROM FileManagement INNER JOIN AccountManager ON FileManagement.Insertedby = AccountManager.AMNo WHERE (FileManagement.LogNumber = @LogNumber)">
<SelectParameters>
<asp:QueryStringParameter DbType="Int32" Name="LogNumber"
QueryStringField="Q" />
</SelectParameters>
</asp:SqlDataSource>
thanks for your great support
0
Hi Mohammed,
I would suggest you to review the following online example which demonstrates implementation of RadUpload in RadGrid control. Review it on your side and let me know if this is what you are trying to achieve.
Best wishes,
Maria Ilieva
the Telerik team
I would suggest you to review the following online example which demonstrates implementation of RadUpload in RadGrid control. Review it on your side and let me know if this is what you are trying to achieve.
Best wishes,
Maria Ilieva
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.