Click here to Skip to main content
15,911,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: update panel not working Pin
SayreCC22-Apr-09 21:16
SayreCC22-Apr-09 21:16 
QuestionHow to use button in a Datalist Pin
Nekkantidivya22-Apr-09 19:10
Nekkantidivya22-Apr-09 19:10 
AnswerRe: How to use button in a Datalist Pin
dotnetmember22-Apr-09 19:31
dotnetmember22-Apr-09 19:31 
AnswerRe: How to use button in a Datalist Pin
sekannak22-Apr-09 21:27
sekannak22-Apr-09 21:27 
QuestionProblem in sending XML response [modified] Pin
Jagz W22-Apr-09 18:55
professionalJagz W22-Apr-09 18:55 
AnswerRe: Problem in sending XML response Pin
Abhijit Jana22-Apr-09 19:03
professionalAbhijit Jana22-Apr-09 19:03 
GeneralRe: Problem in sending XML response Pin
Jagz W22-Apr-09 19:11
professionalJagz W22-Apr-09 19:11 
QuestionHere is a tough one... Pin
RonRasmussen22-Apr-09 15:37
RonRasmussen22-Apr-09 15:37 
I have two user controls. The first user control starts a table with one row with 3 columns and starts a second row and starts the second cell. The second user control ends what the first control started.

I place the first user control on a page, then I add say a list box and finally add the second user control. The outcome of this is the Top, bottom and sides of the table are predefined in the user controls.

Now my problem... The listbox is not visible. I think it is hidden behind the user control.

When I View Source the tables appear to be correct. Does anyone have any ideas why the listbox does not appear?



Here is the code:
Top User Control "PanelTop1"

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="PanelTop.ascx.vb" Inherits="UserControls_Panels_PanelTop" %>
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="PanelTopLeft" width="14px">
<asp:Image ID="Image1" Height="1px" Width="14px" runat="server" />
</td>
<td class="PanelTopFill" width="100%">
</td>
<td class="PanelTopClose" width="41px">
<asp:Image ID="Image3" Height="1px" Width="41px" runat="server" />
</td>
<td class="PanelTopRight" width="23px">
<asp:Image ID="Image2" Height="1px" Width="23px" runat="server" />
</td>
</tr>
<tr>
<td class="PanelLeftFill">
</td>
<td colspan="2" >



Bottom User Control "PanelBottom1"

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="PanelBottom.ascx.vb"
Inherits="UserControls_Panels_PanelBottom" %>
</td>
<td class="PanelRightFill">
</td>
</tr>
<tr>
<td class="PanelBottomLeft">
</td>
<td colspan="2" class="PanelBottomFill">
</td>
<td class="PanelBottomRight">
</td>
</tr>
</table>


Page Usage:
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="3">
<uc2:PanelTop ID="PanelTop1" runat="server" />
<table class="PanelTable">
<tr>
<td>
<asp:ListBox ID="ListBox22" Visible="true" AutoPostBack="true" Rows="20" Width="100%"
runat="server" BackColor="#FF0066"></asp:ListBox>
</td>
</tr>
</table>
<uc3:PanelBottom ID="PanelBottom1" runat="server" />
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
AnswerRe: Here is a tough one... Pin
RonRasmussen22-Apr-09 16:04
RonRasmussen22-Apr-09 16:04 
QuestionNewbie question: Local file access from an ASP app. Pin
nicknotyet22-Apr-09 12:57
nicknotyet22-Apr-09 12:57 
AnswerRe: Newbie question: Local file access from an ASP app. [modified] Pin
Yusuf22-Apr-09 14:08
Yusuf22-Apr-09 14:08 
GeneralRe: Newbie question: Local file access from an ASP app. Pin
nicknotyet22-Apr-09 14:26
nicknotyet22-Apr-09 14:26 
GeneralRe: Newbie question: Local file access from an ASP app. Pin
scottgp22-Apr-09 16:10
professionalscottgp22-Apr-09 16:10 
GeneralRe: Newbie question: Local file access from an ASP app. Pin
nicknotyet22-Apr-09 16:39
nicknotyet22-Apr-09 16:39 
GeneralRe: Newbie question: Local file access from an ASP app. Pin
Yusuf23-Apr-09 3:32
Yusuf23-Apr-09 3:32 
GeneralRe: Newbie question: Local file access from an ASP app. Pin
nicknotyet23-Apr-09 10:32
nicknotyet23-Apr-09 10:32 
QuestionHandling a null value Pin
Ekjon22-Apr-09 11:40
Ekjon22-Apr-09 11:40 
AnswerRe: Handling a null value Pin
Yusuf22-Apr-09 14:12
Yusuf22-Apr-09 14:12 
AnswerRe: Handling a null value Pin
Perry Holman22-Apr-09 16:26
Perry Holman22-Apr-09 16:26 
GeneralRe: Handling a null value Pin
Ekjon23-Apr-09 5:15
Ekjon23-Apr-09 5:15 
Questiontree view select all child nodes when to click parent nodes Pin
T_Teef22-Apr-09 9:54
T_Teef22-Apr-09 9:54 
AnswerRe: tree view select all child nodes when to click parent nodes Pin
ToddHileHoffer22-Apr-09 10:03
ToddHileHoffer22-Apr-09 10:03 
QuestionRe: tree view select all child nodes when to click parent nodes Pin
T_Teef22-Apr-09 10:06
T_Teef22-Apr-09 10:06 
AnswerRe: tree view select all child nodes when to click parent nodes Pin
Fayu22-Apr-09 10:10
Fayu22-Apr-09 10:10 
QuestionRe: tree view select all child nodes when to click parent nodes Pin
T_Teef22-Apr-09 10:18
T_Teef22-Apr-09 10:18 

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.