Click here to Skip to main content
15,888,908 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problem with gridview Pin
S.Dhanasekaran4-Feb-09 3:15
S.Dhanasekaran4-Feb-09 3:15 
AnswerRe: Problem with gridview Pin
RichardGrimmer5-Feb-09 4:58
RichardGrimmer5-Feb-09 4:58 
QuestionHow to pass an object as argument? [modified] Pin
Radiv Jeshya2-Feb-09 21:27
Radiv Jeshya2-Feb-09 21:27 
AnswerRe: How to pass an object as argument? Pin
Christian Graus2-Feb-09 22:35
protectorChristian Graus2-Feb-09 22:35 
QuestionRefrense to a HtmlForm Pin
mehrdadc482-Feb-09 20:46
mehrdadc482-Feb-09 20:46 
AnswerRe: Refrense to a HtmlForm Pin
Christian Graus2-Feb-09 21:03
protectorChristian Graus2-Feb-09 21:03 
GeneralRe: Refrense to a HtmlForm Pin
N a v a n e e t h2-Feb-09 21:33
N a v a n e e t h2-Feb-09 21:33 
Questionlink button in grid view is not working pls help Pin
anujbanka17842-Feb-09 20:43
anujbanka17842-Feb-09 20:43 
<asp:GridView ID="GridView1" runat="server" BackColor="#DEBA84" BorderColor="#DEBA84"
BorderStyle="None" BorderWidth="1px" CellPadding="3" CellSpacing="2" AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="Total" Enabled="False" Height="278px" Width="515px" Font-Size="Large" OnRowDataBound="GridView1_RowDataBound" >
<FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
<RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
<SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
<PagerStyle ForeColor="#8C4510" HorizontalAlign="Center" />
<HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:TemplateField HeaderText="Article Subject">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" Font-Underline="True" Text='<%# Eval("TA_VC50_ArtName") %>' ForeColor="Purple" Visible="<%# true %>" PostBackUrl="default1.aspx"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Author">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("TA_VC50_ArtAuthor") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="marks">
<ItemTemplate>
<asp:Label ID="Label3" runat="server" Text='<%# Eval("Total") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<AlternatingRowStyle Font-Size="Large" />
</asp:GridView>
</td
AnswerRe: link button in grid view is not working pls help Pin
Christian Graus2-Feb-09 21:04
protectorChristian Graus2-Feb-09 21:04 
GeneralRe: link button in grid view is not working pls help Pin
anujbanka17842-Feb-09 21:07
anujbanka17842-Feb-09 21:07 
Questionhow to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
sugunavathysubramanian2-Feb-09 19:44
sugunavathysubramanian2-Feb-09 19:44 
AnswerRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
N a v a n e e t h2-Feb-09 19:47
N a v a n e e t h2-Feb-09 19:47 
GeneralRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
sugunavathysubramanian2-Feb-09 19:59
sugunavathysubramanian2-Feb-09 19:59 
GeneralRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
Christian Graus2-Feb-09 20:20
protectorChristian Graus2-Feb-09 20:20 
GeneralRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
sugunavathysubramanian2-Feb-09 20:36
sugunavathysubramanian2-Feb-09 20:36 
GeneralRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
Christian Graus2-Feb-09 21:05
protectorChristian Graus2-Feb-09 21:05 
GeneralRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
sugunavathysubramanian2-Feb-09 21:12
sugunavathysubramanian2-Feb-09 21:12 
AnswerRe: how to solve this error ------&gt;Access to the path 'C:\websites\afxisi.org\Export\contacts.csv' is denied ? Pin
Ranjit Viswakumar3-Feb-09 3:26
Ranjit Viswakumar3-Feb-09 3:26 
QuestionBackup and Restore database using xml Pin
RajaAhmed2-Feb-09 19:38
RajaAhmed2-Feb-09 19:38 
AnswerRe: Backup and Restore database using xml Pin
N a v a n e e t h2-Feb-09 19:43
N a v a n e e t h2-Feb-09 19:43 
GeneralRe: Backup and Restore database using xml Pin
RajaAhmed2-Feb-09 22:10
RajaAhmed2-Feb-09 22:10 
QuestionHow to set desired selected index of dropdownlist having AutoPostBack=true Pin
Dattatraya K2-Feb-09 19:35
Dattatraya K2-Feb-09 19:35 
AnswerRe: How to set desired selected index of dropdownlist having AutoPostBack=true Pin
Abhijit Jana2-Feb-09 20:22
professionalAbhijit Jana2-Feb-09 20:22 
GeneralRe: How to set desired selected index of dropdownlist having AutoPostBack=true Pin
Dattatraya K2-Feb-09 20:47
Dattatraya K2-Feb-09 20:47 
Questionerror "There is already an open DataReader associated with this Command which must be closed 1st." Pin
Eunice (VB junior)2-Feb-09 19:03
Eunice (VB junior)2-Feb-09 19:03 

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.