Click here to Skip to main content
15,922,512 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: draw graphs Pin
amaneet14-Jun-06 19:29
amaneet14-Jun-06 19:29 
Questionbitmap class in vb.net Pin
amaneet14-Jun-06 19:20
amaneet14-Jun-06 19:20 
QuestionReading Contents of a Word File. Pin
deepaks314-Jun-06 19:15
deepaks314-Jun-06 19:15 
AnswerRe: Reading Contents of a Word File. Pin
amaneet14-Jun-06 19:22
amaneet14-Jun-06 19:22 
GeneralRe: Reading Contents of a Word File. Pin
deepaks314-Jun-06 19:41
deepaks314-Jun-06 19:41 
QuestionMultiline Datagrid Control [modified] Pin
Nagraj Naik14-Jun-06 19:11
Nagraj Naik14-Jun-06 19:11 
GeneralRe: Multiline Datagrid Control [modified] Pin
amaneet14-Jun-06 19:25
amaneet14-Jun-06 19:25 
AnswerRe: Multiline Datagrid Control Pin
Suamal14-Jun-06 19:36
Suamal14-Jun-06 19:36 
You can use template column in the grid with two labels to display 2 fields

use <br> to display it in other line


<asp:TemplateColumn HeaderText="F1 & F2" HeaderStyle-Wrap="false">
<HeaderStyle Width="15%"></HeaderStyle>
<ItemStyle Width="15%"></ItemStyle>
<ItemTemplate>
<asp:label runat="server" Visible="True" id="lblF1" Text='<%# DataBinder.Eval(Container.DataItem, "F1") %>'>

</asp:label> <br> <asp:label runat="server" Visible="True" id="lblF2" CssClass="default_text" Text='<%# DataBinder.Eval(Container.DataItem, "F2") %>'>
</asp:label>
</ItemTemplate>
</asp:TemplateColumn>
GeneralRe: Multiline Datagrid Control Pin
Nagraj Naik14-Jun-06 20:08
Nagraj Naik14-Jun-06 20:08 
QuestionCount WebSite Visitors Pin
TheEagle14-Jun-06 18:36
TheEagle14-Jun-06 18:36 
AnswerRe: Count WebSite Visitors Pin
Suamal14-Jun-06 19:04
Suamal14-Jun-06 19:04 
GeneralRe: Count WebSite Visitors Pin
TheEagle14-Jun-06 19:27
TheEagle14-Jun-06 19:27 
GeneralRe: Count WebSite Visitors Pin
Suamal14-Jun-06 19:39
Suamal14-Jun-06 19:39 
GeneralRe: Count WebSite Visitors Pin
TheEagle17-Jun-06 7:20
TheEagle17-Jun-06 7:20 
QuestionBind Datagrid With Viewstate Pin
varshavmane14-Jun-06 18:32
varshavmane14-Jun-06 18:32 
AnswerRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 18:58
_AK_14-Jun-06 18:58 
AnswerRe: Bind Datagrid With Viewstate Pin
Tirthadip14-Jun-06 19:21
Tirthadip14-Jun-06 19:21 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 19:43
varshavmane14-Jun-06 19:43 
AnswerRe: Bind Datagrid With Viewstate Pin
Tirthadip14-Jun-06 19:55
Tirthadip14-Jun-06 19:55 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:24
varshavmane14-Jun-06 20:24 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:29
_AK_14-Jun-06 20:29 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:36
varshavmane14-Jun-06 20:36 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:41
_AK_14-Jun-06 20:41 
GeneralRe: Bind Datagrid With Viewstate Pin
varshavmane14-Jun-06 20:45
varshavmane14-Jun-06 20:45 
GeneralRe: Bind Datagrid With Viewstate Pin
_AK_14-Jun-06 20:49
_AK_14-Jun-06 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.