Click here to Skip to main content
15,890,882 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to get the Gridview data into DataTable Pin
K V Sekhar28-Oct-08 22:12
K V Sekhar28-Oct-08 22:12 
GeneralRe: How to get the Gridview data into DataTable Pin
meeram39529-Oct-08 1:02
meeram39529-Oct-08 1:02 
AnswerRe: How to get the Gridview data into DataTable Pin
S.Dhanasekaran28-Oct-08 21:36
S.Dhanasekaran28-Oct-08 21:36 
QuestionUsers Loose Sessions Pin
Vimalsoft(Pty) Ltd28-Oct-08 19:51
professionalVimalsoft(Pty) Ltd28-Oct-08 19:51 
AnswerRe: Users Loose Sessions Pin
Christian Graus28-Oct-08 20:40
protectorChristian Graus28-Oct-08 20:40 
GeneralRe: Users Loose Sessions Pin
Vimalsoft(Pty) Ltd28-Oct-08 21:05
professionalVimalsoft(Pty) Ltd28-Oct-08 21:05 
GeneralRe: Users Loose Sessions Pin
LloydA11129-Oct-08 5:33
LloydA11129-Oct-08 5:33 
QuestionGetting Error when exporting Gridview data to excel Pin
Satish - Developer28-Oct-08 19:41
Satish - Developer28-Oct-08 19:41 
Hi, when i am exporting gridview data to excel file, i am facing following error.. can any one give idea..why it so like this?

"Control 'GVExcel' of type 'GridView' must be placed inside a form tag with runat=server."

My code is as follows
mypage.aspx
<body>
    <form id="form1" runat="server">
    <div>
        <asp:GridView ID="GVExcel" runat="server">
        </asp:GridView>
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /></div>
    </form>
</body>


Mypage.aspx.cs

string connstr = "Data Source=ORG33;Initial Catalog=MYDatabase;User ID=sa;Password=miller";
SqlConnection sqlcon = new SqlConnection(connstr);
sqlcon.Open();

string cmdcnt = "Select top 10 * from ORG_TBL_INDSEEDFirst";
SqlDataAdapter sqlda = new SqlDataAdapter(cmdcnt, sqlcon);
sqlda.Fill(ds);
dt = ds.Tables[0];

GVExcel.DataSource = dt;
GVExcel.DataBind();

StringWriter stringWrite = new StringWriter();
HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
GVExcel.RenderControl(htmlWrite); ---Getting Error here

sqlcon.Close();

G. Satish

QuestionCalling java script Pin
alok_2k328-Oct-08 19:14
alok_2k328-Oct-08 19:14 
QuestionCrystal Report (PDF Format) Pin
LishaDamian28-Oct-08 18:52
LishaDamian28-Oct-08 18:52 
Questionasp.net ebooks Pin
open your mind28-Oct-08 18:22
open your mind28-Oct-08 18:22 
AnswerRe: asp.net ebooks Pin
Christian Graus28-Oct-08 19:23
protectorChristian Graus28-Oct-08 19:23 
GeneralRe: asp.net ebooks Pin
John Gathogo28-Oct-08 19:52
John Gathogo28-Oct-08 19:52 
GeneralRe: asp.net ebooks Pin
Christian Graus28-Oct-08 20:45
protectorChristian Graus28-Oct-08 20:45 
GeneralRe: asp.net ebooks Pin
CPallini28-Oct-08 23:35
mveCPallini28-Oct-08 23:35 
AnswerRe: asp.net ebooks Pin
Vimalsoft(Pty) Ltd28-Oct-08 20:06
professionalVimalsoft(Pty) Ltd28-Oct-08 20:06 
GeneralRe: asp.net ebooks Pin
Christian Graus28-Oct-08 20:45
protectorChristian Graus28-Oct-08 20:45 
GeneralRe: asp.net ebooks Pin
Vimalsoft(Pty) Ltd28-Oct-08 20:48
professionalVimalsoft(Pty) Ltd28-Oct-08 20:48 
GeneralRe: asp.net ebooks Pin
Christian Graus28-Oct-08 20:55
protectorChristian Graus28-Oct-08 20:55 
GeneralRe: asp.net ebooks Pin
Vimalsoft(Pty) Ltd28-Oct-08 20:59
professionalVimalsoft(Pty) Ltd28-Oct-08 20:59 
GeneralRe: asp.net ebooks Pin
Christian Graus28-Oct-08 21:07
protectorChristian Graus28-Oct-08 21:07 
GeneralRe: asp.net ebooks Pin
Vimalsoft(Pty) Ltd28-Oct-08 21:10
professionalVimalsoft(Pty) Ltd28-Oct-08 21:10 
GeneralRe: asp.net ebooks Pin
Colin Angus Mackay28-Oct-08 22:40
Colin Angus Mackay28-Oct-08 22:40 
GeneralRe: asp.net ebooks Pin
Vimalsoft(Pty) Ltd28-Oct-08 22:45
professionalVimalsoft(Pty) Ltd28-Oct-08 22:45 
AnswerRe: asp.net ebooks Pin
LloydA11129-Oct-08 5:38
LloydA11129-Oct-08 5:38 

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.