Click here to Skip to main content
16,007,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: save txt file on client computer Pin
Venkatesh Mookkan8-Oct-08 17:27
Venkatesh Mookkan8-Oct-08 17:27 
QuestionCross database compatibility Pin
Bardy858-Oct-08 0:52
Bardy858-Oct-08 0:52 
QuestionAdd control to panel Runtime Pin
omlac7-Oct-08 23:49
omlac7-Oct-08 23:49 
AnswerRe: Add control to panel Runtime Pin
eyeseetee7-Oct-08 23:54
eyeseetee7-Oct-08 23:54 
GeneralRe: Add control to panel Runtime Pin
omlac8-Oct-08 0:07
omlac8-Oct-08 0:07 
QuestionExport Datagrid to Excel using ASP.Net Pin
mullamootil7-Oct-08 23:36
mullamootil7-Oct-08 23:36 
AnswerRe: Export Datagrid to Excel using ASP.Net Pin
HemJoshi7-Oct-08 23:53
HemJoshi7-Oct-08 23:53 
GeneralRe: Export Datagrid to Excel using ASP.Net Pin
mullamootil8-Oct-08 20:14
mullamootil8-Oct-08 20:14 
Ya i used this code which u have pasted but it is not for multisheets of excel.Thats y i tried like this

Dim obj_xl As New Excel.Application()
Try
obj_xl = GetObject(, "Excel.Application")
Catch ex As Exception
obj_xl = GetObject("", "Excel.Application")
End Try
obj_xl.Application.Visible = True
obj_xl.Workbooks.Add()
obj_xl.Sheets("Sheet1").Select()
With obj_xl
For i = 0 To dt.Rows.Count - 1
For j = 0 To dt.Columns.Count - 1
If IsDBNull(dt.Rows(i).Item(j)) Then
.ActiveCell(i + 4, j + 1) = String.Empty
Else
.ActiveCell(i + 4, j + 1) = dt.Rows(i).Item(j) End If
Next
Next

obj_xl.Dialogs(Excel.XlBuiltInDialog.xlDialogSaveAs).Show()
End With

This was the method i using to export values from data table.
I used some COM components for excel
This worked fine in my system.When i try to run in IIS its showing error as COM file missing
AnswerRe: Export Datagrid to Excel using ASP.Net Pin
Sneha Bisht8-Oct-08 1:44
Sneha Bisht8-Oct-08 1:44 
GeneralRe: Export Datagrid to Excel using ASP.Net Pin
calf20088-Oct-08 15:17
calf20088-Oct-08 15:17 
QuestionProblem with Placeholder control [modified] Pin
eyeseetee7-Oct-08 23:30
eyeseetee7-Oct-08 23:30 
AnswerRe: Problem with Placeholder control Pin
thomasa8-Oct-08 0:01
thomasa8-Oct-08 0:01 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 0:15
eyeseetee8-Oct-08 0:15 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 1:16
thomasa8-Oct-08 1:16 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 0:21
eyeseetee8-Oct-08 0:21 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 1:18
thomasa8-Oct-08 1:18 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 1:23
eyeseetee8-Oct-08 1:23 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 1:28
eyeseetee8-Oct-08 1:28 
GeneralRe: Problem with Placeholder control [modified] Pin
thomasa8-Oct-08 1:58
thomasa8-Oct-08 1:58 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:26
eyeseetee8-Oct-08 2:26 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 2:31
eyeseetee8-Oct-08 2:31 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 3:16
thomasa8-Oct-08 3:16 
GeneralRe: Problem with Placeholder control Pin
thomasa8-Oct-08 3:40
thomasa8-Oct-08 3:40 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 4:12
eyeseetee8-Oct-08 4:12 
GeneralRe: Problem with Placeholder control Pin
eyeseetee8-Oct-08 21:47
eyeseetee8-Oct-08 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.