Click here to Skip to main content
16,007,277 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: remove item from arraylist Pin
Not Active23-Aug-06 8:25
mentorNot Active23-Aug-06 8:25 
QuestionUser details. Pin
NaNg1524123-Aug-06 7:13
NaNg1524123-Aug-06 7:13 
QuestionHistory List for a Form Field Pin
#realJSOP23-Aug-06 5:35
professional#realJSOP23-Aug-06 5:35 
AnswerRe: History List for a Form Field Pin
Rama Krishna Vavilala23-Aug-06 6:02
Rama Krishna Vavilala23-Aug-06 6:02 
GeneralRe: History List for a Form Field [modified] Pin
#realJSOP23-Aug-06 6:08
professional#realJSOP23-Aug-06 6:08 
GeneralRe: History List for a Form Field Pin
Rama Krishna Vavilala23-Aug-06 6:19
Rama Krishna Vavilala23-Aug-06 6:19 
GeneralRe: History List for a Form Field Pin
#realJSOP23-Aug-06 6:42
professional#realJSOP23-Aug-06 6:42 
GeneralRe: History List for a Form Field [modified] Pin
ToddHileHoffer23-Aug-06 7:05
ToddHileHoffer23-Aug-06 7:05 
Please don't say IFRAME when you ask us 2.0 gurus a question.
What I like to do is put everything inside html tables. Learn them, they are your friend.
Here is an example of a well designed master page. Theming is enabled on the page. In App_Themese\Main\Default.css I have the following.

Table
{
font-family:Arial, Verdana;
font-size:9pt;
white-space:normal;
width:100%;
vertical-align:top;

}

.EmptyRow
{
height:10px;
}

.EmptyRowSmall
{
height:2px;
}


Notice "white-space:normal" it prevents a lot of headaches. Any css class that doesn't have a "." in front of it is automatically applied. Hence the following style will be applied to all tables. Make sure you put EnableTheming ="True" in the page directive and supply Theme="Main" in content page.

Below you will see a well organized master page.
<code>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td style="width:15%;">
</td>
<td style="width:85%;">
<asp:Label ID="lblHeading" runat="server" CssClass="Heading">Brokerage Rates Maintenance</asp:Label>
</td>
</tr>
<tr class="EmptyRow">
<td style="width:15%;">
</td>
<td style="width:85%;">
</td>
</tr>
<tr>
<td style="width:15%; vertical-align:top;">
PUT MENU HERE.
</td>
<td style="width:85%; vertical-align:top;">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</td>
</tr>
</table>

</div>
</form>
</code>

I hope this is useful to you.

how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06

px?RateFactorID=4" Text="Loss Ratio" Value="4">
</asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=5" Text="Protection Class"
Value="5"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=6" Text="Valuation"
Value="6"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=7" Text="State Multiplier"
Value="7"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=8" Text="Theft" Value="8">
</asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=9" Text="Windstorm / Hail"
Value="9"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=10" Text="Coinsurance"
Value="10"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/DebitCredit/Main.aspx?RateFactorID=11" Text="Deductible Rate Factor"
Value="11"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode SelectAction="Expand" Text="Mono Line Property" Value="0">
<asp:TreeNode NavigateUrl="~/MonoLineProperty/BaseRates.aspx" Text="Base Rates" Value="Base Rates"></asp:TreeNode>
<asp:TreeNode NavigateUrl="~/MonoLineProperty/MaxLimits.aspx" Text="Max Limits" Value="Max Limits">
</asp:TreeNode>
<asp:TreeNode NavigateUrl="~/MonoLineProperty/MinimunDeductibles.aspx" Text="Minimum Deductibles"
Value="Minimum Deductibles"></asp:TreeNode>
</asp:TreeNode>
</Nodes>
<NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="0px"
NodeSpacing="0px" VerticalPadding="0px" />
</asp:TreeView>
</td>
<td style="width:85%; vertical-align:top;">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</td>
</tr>
</table>

</div>
</form>
</code>

I hope this is useful to you.

how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06
GeneralRe: History List for a Form Field Pin
#realJSOP23-Aug-06 7:31
professional#realJSOP23-Aug-06 7:31 
GeneralRe: History List for a Form Field Pin
ToddHileHoffer23-Aug-06 7:33
ToddHileHoffer23-Aug-06 7:33 
GeneralRe: History List for a Form Field Pin
#realJSOP23-Aug-06 10:54
professional#realJSOP23-Aug-06 10:54 
GeneralRe: History List for a Form Field Pin
David Stone23-Aug-06 9:21
sitebuilderDavid Stone23-Aug-06 9:21 
GeneralRe: History List for a Form Field Pin
#realJSOP23-Aug-06 10:43
professional#realJSOP23-Aug-06 10:43 
GeneralRe: History List for a Form Field Pin
Jeremy Falcon23-Aug-06 7:46
professionalJeremy Falcon23-Aug-06 7:46 
GeneralRe: History List for a Form Field Pin
Rama Krishna Vavilala23-Aug-06 7:49
Rama Krishna Vavilala23-Aug-06 7:49 
GeneralRe: History List for a Form Field Pin
Jeremy Falcon23-Aug-06 7:51
professionalJeremy Falcon23-Aug-06 7:51 
GeneralRe: History List for a Form Field Pin
Chris S Kaiser23-Aug-06 11:45
Chris S Kaiser23-Aug-06 11:45 
AnswerRe: History List for a Form Field Pin
User 171649223-Aug-06 7:37
professionalUser 171649223-Aug-06 7:37 
GeneralRe: History List for a Form Field Pin
Jeremy Falcon23-Aug-06 7:46
professionalJeremy Falcon23-Aug-06 7:46 
GeneralRe: History List for a Form Field Pin
User 171649223-Aug-06 8:05
professionalUser 171649223-Aug-06 8:05 
GeneralRe: History List for a Form Field Pin
David Stone23-Aug-06 9:21
sitebuilderDavid Stone23-Aug-06 9:21 
GeneralRe: History List for a Form Field Pin
#realJSOP23-Aug-06 10:55
professional#realJSOP23-Aug-06 10:55 
GeneralRe: History List for a Form Field Pin
ToddHileHoffer23-Aug-06 7:48
ToddHileHoffer23-Aug-06 7:48 
GeneralRe: History List for a Form Field [modified] Pin
#realJSOP23-Aug-06 10:46
professional#realJSOP23-Aug-06 10:46 
QuestionCustom error page is ignored Pin
ake_krakbar23-Aug-06 4:45
ake_krakbar23-Aug-06 4:45 

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.