Click here to Skip to main content
15,893,814 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Export Datagrid to Excel using ASP.Net Pin
Sneha Bisht8-Oct-08 1:44
Sneha Bisht8-Oct-08 1:44 
Use This Code:
protected void bttbexcel_Click(object sender, EventArgs e)
{
Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=FileName.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.xls";
System.IO.StringWriter stringWrite = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter stringWrite);

GridView1.RenderControl(htmlWrite);
this.EnableViewState = false;
GridView1.AllowPaging = false;
GridView1.AllowSorting = false;
GridView1.Attributes["runat"] = "server";
Response.Write(stringWrite.ToString());
Response.End();

}
public override void VerifyRenderingInServerForm(Control control)
{

}
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 
GeneralRe: Problem with Placeholder control Pin
J4amieC8-Oct-08 1:44
J4amieC8-Oct-08 1:44 

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.