Click here to Skip to main content
15,880,608 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Compilation takes a long time. Pin
Abhishek Sur17-Nov-09 6:09
professionalAbhishek Sur17-Nov-09 6:09 
GeneralRe: Compilation takes a long time. Pin
devboycpp17-Nov-09 7:10
devboycpp17-Nov-09 7:10 
GeneralRe: Compilation takes a long time. Pin
Abhishek Sur17-Nov-09 7:11
professionalAbhishek Sur17-Nov-09 7:11 
AnswerRe: Compilation takes a long time. Pin
Gamzun17-Nov-09 6:17
Gamzun17-Nov-09 6:17 
Question[Message Deleted] Pin
FEMDEV17-Nov-09 3:20
FEMDEV17-Nov-09 3:20 
AnswerRe: export to excel in windows application Pin
Abhishek Sur17-Nov-09 3:34
professionalAbhishek Sur17-Nov-09 3:34 
AnswerRe: export to excel in windows application Pin
Abhijit Jana17-Nov-09 3:58
professionalAbhijit Jana17-Nov-09 3:58 
Questiongridview issue Pin
Tauseef A17-Nov-09 2:35
Tauseef A17-Nov-09 2:35 
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel id ="upanel" runat ="server">
<ContentTemplate>
<table border ="0" width ="100%">
<tr>
<td>
<h3>Customer Data</h3>
</td>
</tr>
<tr>
<td width ="50px">

<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" BorderColor="White" BorderStyle="Ridge"
BorderWidth="2px" CellPadding="3" CellSpacing="1" DataKeyNames="customerid"
HorizontalAlign="Left" onpageindexchanging="GridView1_PageIndexChanging"
onrowcancelingedit="GridView1_RowCancelingEdit"
onrowcommand="GridView1_RowCommand" onrowdeleted="GridView1_RowDeleted"
onrowdeleting="GridView1_RowDeleting" onrowediting="GridView1_RowEditing"
onrowupdated="GridView1_RowUpdated" onrowupdating="GridView1_RowUpdating"
onselectedindexchanged="GridView1_SelectedIndexChanged" PageSize="5"
ShowFooter="True" Width="1003px">
<RowStyle BackColor="#DEDFDE" ForeColor="Black" Wrap="True" />
<Columns>
<asp:TemplateField HeaderText="Customer ID">
<FooterTemplate>
<%--<asp:Button ID ="b2" BackColor ="blue" CommandName ="Add" runat ="server" />--%>
<asp:Button ID="btnsave" runat="server" CommandName="Add"
Text="Insert Record" />
<asp:TextBox ID="add_customerid" runat="server"></asp:TextBox>
</FooterTemplate>
<ItemTemplate>
<asp:Label ID="lblcustomerid" runat="server" Text='<%#Eval("customerid") %>'>&#39;</asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Company Name">
<ItemTemplate>
<asp:Label ID="lblcompanyname" runat="server" Text='<%#Eval("companyname") %>'>&#39;</asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="up_txtcompanyname" runat="server" BackColor="green"></asp:TextBox>
</EditItemTemplate>
<FooterTemplate>
<asp:TextBox ID="add_txtcompanyname" runat="server"></asp:TextBox>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Contact Tiltle">
<ItemTemplate>
<asp:Label ID="lblctitle" runat="server" Text='<%#Eval("contacttitle") %>'>&#39;</asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="up_contacttitle" runat="server" BackColor="green"></asp:TextBox>
</EditItemTemplate>
<FooterTemplate>
<asp:TextBox ID="add_contacttitle" runat="server"></asp:TextBox>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="City ">
<ItemTemplate>
<asp:Label ID="lblcity" runat="server" Text='<%#Eval("city") %>'>&#39;</asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="up_city" runat="server" BackColor="green"></asp:TextBox>
</EditItemTemplate>
<FooterTemplate>
<asp:TextBox ID="add_city" runat="server"></asp:TextBox>
</FooterTemplate>
</asp:TemplateField>
<asp:CommandField ButtonType="Image" CancelImageUrl="~/Cancel.gif"
DeleteImageUrl="~/Delete.gif" EditImageUrl="~/Edit.gif" ShowEditButton="True"
UpdateImageUrl="~/Update.gif" />
<asp:CommandField ButtonType="Image" DeleteImageUrl="~/Delete.gif"
ShowCancelButton="False" ShowDeleteButton="True" />
<asp:CommandField ButtonType="Image" SelectImageUrl="~/Plus.gif"
ShowSelectButton="True" />
</Columns>
<FooterStyle BackColor="#C6C3C6" ForeColor="Black" />
<PagerStyle BackColor="#C6C3C6" ForeColor="Black" HorizontalAlign="Right" />
<SelectedRowStyle BackColor="#9471DE" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#4A3C8C" Font-Bold="True" ForeColor="#E7E7FF" />
<EditRowStyle Wrap="False" />
</asp:GridView>
</td>
</tr>
<tr>
<td align ="center"> <h3>Order Details</h3>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>

Tauseef A Khan
MCP Dotnet framework 2.0.

AnswerRe: gridview issue Pin
Abhishek Sur17-Nov-09 3:00
professionalAbhishek Sur17-Nov-09 3:00 
QuestionRe: gridview issue Pin
Tauseef A17-Nov-09 4:46
Tauseef A17-Nov-09 4:46 
AnswerRe: gridview issue Pin
Abhijit Jana17-Nov-09 3:57
professionalAbhijit Jana17-Nov-09 3:57 
QuestionRe: gridview issue Pin
Tauseef A17-Nov-09 4:47
Tauseef A17-Nov-09 4:47 
AnswerRe: gridview issue Pin
Abhijit Jana17-Nov-09 5:19
professionalAbhijit Jana17-Nov-09 5:19 
GeneralRe: gridview issue Pin
Tauseef A17-Nov-09 5:49
Tauseef A17-Nov-09 5:49 
QuestionHow to call a code behind function from a .aspx file Pin
Puneet Bhatnagar17-Nov-09 2:30
Puneet Bhatnagar17-Nov-09 2:30 
AnswerRe: How to call a code behind function from a .aspx file Pin
Abhishek Sur17-Nov-09 2:47
professionalAbhishek Sur17-Nov-09 2:47 
AnswerRe: How to call a code behind function from a .aspx file Pin
Gamzun17-Nov-09 7:47
Gamzun17-Nov-09 7:47 
QuestionGridView Inside UpdatePanel Problem Pin
VVRSN Acharyulu17-Nov-09 2:01
VVRSN Acharyulu17-Nov-09 2:01 
AnswerRe: GridView Inside UpdatePanel Problem Pin
dan!sh 17-Nov-09 2:29
professional dan!sh 17-Nov-09 2:29 
GeneralRe: GridView Inside UpdatePanel Problem Pin
VVRSN Acharyulu17-Nov-09 2:44
VVRSN Acharyulu17-Nov-09 2:44 
GeneralRe: GridView Inside UpdatePanel Problem Pin
dan!sh 17-Nov-09 2:54
professional dan!sh 17-Nov-09 2:54 
AnswerRe: GridView Inside UpdatePanel Problem Pin
Abhishek Sur17-Nov-09 2:53
professionalAbhishek Sur17-Nov-09 2:53 
AnswerRe: GridView Inside UpdatePanel Problem Pin
MohitBhambral17-Nov-09 3:08
MohitBhambral17-Nov-09 3:08 
Questionhow to use the go to meeting from inside my web application Pin
monafr8117-Nov-09 1:53
monafr8117-Nov-09 1:53 
AnswerRe: how to use the go to meeting from inside my web application Pin
Eduard Keilholz17-Nov-09 2:24
Eduard Keilholz17-Nov-09 2:24 

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.