or


1.public class DataUploadResult : AsyncUploadResult2. {3. private string sourceFilePath;4. public string SourceFilePath { get { return this.sourceFilePath; } set { this.sourceFilePath = value; } }5. }1.protected override IAsyncUploadResult Process(UploadedFile file, HttpContext context, IAsyncUploadConfiguration configuration, string tempFileName)2. {3. DataUploadResult result = CreateDefaultUploadResult<DataUploadResult>(file);4. result.SourceFilePath = string.Format(@"{0}\{1}", configuration.TempTargetFolder, tempFileName);5. }
return result;1.protected void RauDataUpload_OnFileUploaded(object sender, FileUploadedEventArgs e)2. {3. DataUploadResult result = e.UploadResult as DataUploadResult;4. }| <rc:TelerikGrid AutoSave="false" ID="RadGrid1" runat="server" SkinID="List" DataSourceID="" |
| AllowSorting="false" Width="100%" AutoGenerateColumns="true" ShowGroupPanel="false" |
| ShowFooter="false" AllowPaging="false" PageSize="20" enableajax="false" |
| GroupingEnabled="false" AllowFilteringByColumn="true" ToolTip="false"> |
| <ClientSettings AllowDragToGroup="false" AllowExpandCollapse="false" AllowGroupExpandCollapse="false" > |
| <Scrolling ScrollHeight="460px" SaveScrollPosition="false" /> |
| <ClientEvents OnMasterTableViewCreated="hide_MasterApp_Updateprogress" /> |
| </ClientSettings> |
| <HeaderStyle Width="150" Wrap="true" /> |
| <ItemStyle Wrap="false" /> |
| <MasterTableView CssClass="MasterTable" CommandItemDisplay="None" |
| GroupLoadMode="Server"> |
| <RowIndicatorColumn UniqueName="RowIndicator" Visible="false"> |
| <HeaderStyle Width="20px" /> |
| </RowIndicatorColumn> |
| </MasterTableView> |
| </rc:TelerikGrid> |