Click here to Skip to main content
15,896,606 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionExcel Conversion Error Pin
DKalepu12-Jun-07 20:46
DKalepu12-Jun-07 20:46 
AnswerRe: Excel Conversion Error Pin
_AK_12-Jun-07 20:49
_AK_12-Jun-07 20:49 
AnswerRe: Excel Conversion Error Pin
Sathesh Sakthivel12-Jun-07 20:51
Sathesh Sakthivel12-Jun-07 20:51 
GeneralRe: Excel Conversion Error Pin
_AK_12-Jun-07 20:53
_AK_12-Jun-07 20:53 
GeneralRe: Excel Conversion Error Pin
Sathesh Sakthivel12-Jun-07 20:56
Sathesh Sakthivel12-Jun-07 20:56 
AnswerRe: Excel Conversion Error Pin
DKalepu12-Jun-07 20:57
DKalepu12-Jun-07 20:57 
GeneralRe: Excel Conversion Error Pin
_AK_12-Jun-07 20:59
_AK_12-Jun-07 20:59 
GeneralRe: Excel Conversion Error Pin
DKalepu12-Jun-07 21:04
DKalepu12-Jun-07 21:04 
yes, here is my form tag code:


<form id="form1" runat="server" style="width: 100%; height: 75%;">
<div>
<table border="0" width="100%">
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblCompany" Width="100%" runat="server">Company</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblCompany1" runat="server"></asp:Label></td>
<td width="5%"></td>
</tr>
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblAddress" Width="100%" runat="server">Address</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblAddress1" runat="server" TextMode="MultiLine"></asp:Label></td>
<td width="5%"></td>
</tr>
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblTelephone" Width="100%" runat="server">Telephone</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblTelephone1" runat="server"></asp:Label></td>
<td width="5%"></td>
</tr>
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblFax" Width="100%" runat="server">Fax</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblFax1" runat="server"></asp:Label></td>
<td width="5%"></td>
</tr>
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblEmail" Width="100%" runat="server">Email</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblEmail1" runat="server"></asp:Label></td>
<td width="5%"></td>
</tr>
</table>
<br /><br />

<asp:GridView ID="myGridView" runat="server" Width="483px" CellPadding="4" ForeColor="#333333" AutoGenerateColumns="False" DataSourceID="AccessDataSource1">
<Columns>
<asp:BoundField DataField="Sno" HeaderText="SNo" SortExpression="Sno" />
<asp:BoundField DataField="Partno" HeaderText="PartNo" SortExpression="Partno" />
<asp:BoundField DataField="mfg" HeaderText="Manufacturer" SortExpression="mfg" />
<asp:BoundField DataField="qty" HeaderText="Quantity" SortExpression="qty" />
<asp:BoundField DataField="price" HeaderText="Price" SortExpression="price" />
</Columns>
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/db1.mdb"
SelectCommand="SELECT [Sno], [Partno], [mfg], [qty], [price] FROM [RfqInfo]"></asp:AccessDataSource>


<br />
<br />
<table border="0" style="width: 100%">
<tr>
<td style="width: 5%"></td>
<td valign="top" style="width:20%;"><font face="Verdana" size="2">
<asp:Label ID="lblComments" Width="100%" runat="server">Comments</asp:Label></font></td>
<td valign="top" width="70%">
<asp:Label ID="lblComments1" runat="server" TextMode="MultiLine"></asp:Label></td>
<td width="5%"></td>
</tr>
<tr>
<td style="width: 5%; height: 26px;"></td>
<td valign="top" style="width:10%; height: 26px;"><font face="Verdana" size="2">
<asp:Button ID="btnSubmit" Width="100%" runat="server" Text="submit" OnClick="btnSubmit_Click"></asp:Button></font></td>
<td width="5%" style="height: 26px"></td>
</tr>
</table>
<asp:Button ID="BtnExport" runat="server" OnClick="BtnExport_Click"
Text="Export to Excel" />
</div>
</form>

GeneralRe: Excel Conversion Error Pin
_AK_12-Jun-07 21:10
_AK_12-Jun-07 21:10 
GeneralRe: Excel Conversion Error Pin
DKalepu12-Jun-07 21:15
DKalepu12-Jun-07 21:15 
GeneralRe: Excel Conversion Error Pin
DKalepu12-Jun-07 21:17
DKalepu12-Jun-07 21:17 
AnswerRe: Excel Conversion Error Pin
Jay_se12-Jun-07 21:22
Jay_se12-Jun-07 21:22 
GeneralRe: Excel Conversion Error Pin
Venkatesh Mookkan12-Jun-07 22:23
Venkatesh Mookkan12-Jun-07 22:23 
GeneralRe: Excel Conversion Error [modified] Pin
Jay_se12-Jun-07 23:29
Jay_se12-Jun-07 23:29 
AnswerRe: Excel Conversion Error Pin
Venkatesh Mookkan12-Jun-07 21:31
Venkatesh Mookkan12-Jun-07 21:31 
GeneralRe: Excel Conversion Error Pin
Jay_se12-Jun-07 21:37
Jay_se12-Jun-07 21:37 
GeneralRe: Excel Conversion Error Pin
Venkatesh Mookkan12-Jun-07 21:41
Venkatesh Mookkan12-Jun-07 21:41 
AnswerRe: Excel Conversion Error Pin
DKalepu12-Jun-07 21:47
DKalepu12-Jun-07 21:47 
Questiontree page map Pin
kvijayajyothy12-Jun-07 20:45
kvijayajyothy12-Jun-07 20:45 
QuestionSession Pin
ShuklaGirish12-Jun-07 20:45
ShuklaGirish12-Jun-07 20:45 
AnswerRe: Session Pin
_AK_12-Jun-07 20:48
_AK_12-Jun-07 20:48 
GeneralRe: Session Pin
ShuklaGirish13-Jun-07 20:14
ShuklaGirish13-Jun-07 20:14 
GeneralRe: Session Pin
_AK_13-Jun-07 20:17
_AK_13-Jun-07 20:17 
AnswerRe: Session Pin
Chetan Ranpariya12-Jun-07 20:48
Chetan Ranpariya12-Jun-07 20:48 
AnswerRe: Session Pin
Sathesh Sakthivel12-Jun-07 20:49
Sathesh Sakthivel12-Jun-07 20:49 

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.