摘要:
1 DECLARE cursor_timeformatter CURSOR LOCAL FOR 2 SELECT ID, PublishTime FROM Book_BaseFields 3 OPEN cursor_timeformatter 4 DECLARE @ID int ... 阅读全文
摘要:
1 DECLARE cursor_timeformatter CURSOR LOCAL FOR 2 SELECT ID, PublishTime FROM Book_BaseFields 3 OPEN cursor_timeformatter 4 DECLARE @ID int ... 阅读全文
摘要:
1 protected void btnExport_Click(object sender, EventArgs e) 2 { 3 DataTable tbBooks = (DataTable)Session["Books"]; 4 if (tbBoo... 阅读全文
摘要:
1 Workbook workBook = new Workbook(this.fuFile.FileContent); 2 Aspose.Cells.Worksheet sheet = workBook.Worksheets[0]; 3 Cells cells = sheet.Cells; 4 ... 阅读全文
|