Click here to Skip to main content
15,892,809 members
Home / Discussions / Web Development
   

Web Development

 
GeneralShog & Guffa Pin
Megan Forbes3-Jun-06 21:27
Megan Forbes3-Jun-06 21:27 
QuestionPDF on the fly asp.net 2.0? Pin
Brent Lamborn1-Jun-06 9:10
Brent Lamborn1-Jun-06 9:10 
AnswerRe: PDF on the fly asp.net 2.0? [modified] Pin
George L. Jackson1-Jun-06 11:12
George L. Jackson1-Jun-06 11:12 
QuestionDate Format Issue ? Pin
Kamal.Afridi1-Jun-06 1:32
Kamal.Afridi1-Jun-06 1:32 
AnswerRe: Date Format Issue ? Pin
jcrussell1-Jun-06 15:44
jcrussell1-Jun-06 15:44 
AnswerRe: Date Format Issue ? Pin
JackIsMe7774-Jun-06 18:26
JackIsMe7774-Jun-06 18:26 
QuestionPlacing DIVs Pin
Dario Solera1-Jun-06 0:01
Dario Solera1-Jun-06 0:01 
AnswerRe: Placing DIVs Pin
George L. Jackson1-Jun-06 4:50
George L. Jackson1-Jun-06 4:50 
This may not have the desired affect you want but it works in IE 6. These web sites might be helpful:

http://www.positioniseverything.net/[^]

http://www.webreference.com/authoring/style/sheets/layout/advanced/[^]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Div Demo</title>
    <style type="text/css">
        #SidebarDiv 
        {
          position : absolute;
          left : 0;
          width : 180px;
          margin-left : 10px;
          margin-top : 0px;
          color : #000000;
          padding : 3px;
          background-color: blue;
        }
        
        #MainDiv 
         {
              top : 0px;
              margin : 0px 25% 0 186px;
              padding : 3px;
              color : #000000;
              background-color: red;
              width: 78%;
         }
    </style>
</head>
<body>
    <div id="SidebarDiv">
        <table>
                <tr>
                    <td>Side Bar</td>
                </tr>
                <tr>
                    <td>Side Bar</td>
                </tr>
            </table>
    </div>
    <div id="MainDiv">
         <table>
            <tr>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
            </tr>
            <tr>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
                <td>Main Content</td>
            </tr>
        </table>
    </div>
</body>
</html>

GeneralRe: Placing DIVs Pin
Dario Solera1-Jun-06 21:54
Dario Solera1-Jun-06 21:54 
AnswerRe: Placing DIVs Pin
Shog92-Jun-06 10:28
sitebuilderShog92-Jun-06 10:28 
AnswerRe: help me please with row colors (newbie) Pin
JackIsMe7771-Jun-06 0:31
JackIsMe7771-Jun-06 0:31 
GeneralRe: help me please with row colors (newbie) Pin
ransomed_guy1-Jun-06 0:42
ransomed_guy1-Jun-06 0:42 
QuestionShould i use placeholders? Pin
il_manti31-May-06 22:18
il_manti31-May-06 22:18 
GeneralRe: Should i use placeholders? Pin
User 17164921-Jun-06 7:22
professionalUser 17164921-Jun-06 7:22 
QuestionTable Cells "OnClick Event" Pin
Soroush_Sarabi31-May-06 21:37
Soroush_Sarabi31-May-06 21:37 
AnswerRe: Table Cells "OnClick Event" Pin
huguesgauthier1-Jun-06 1:48
huguesgauthier1-Jun-06 1:48 
QuestionHow make Menu Drop Down in PHP ? [modified] Pin
sovanngold31-May-06 19:13
sovanngold31-May-06 19:13 
AnswerRe: How make Menu Drop Down in PHP ? Pin
Steve Echols31-May-06 21:48
Steve Echols31-May-06 21:48 
Questionobject reference not set to instance of an object Pin
uglyeyes31-May-06 16:35
uglyeyes31-May-06 16:35 
QuestionDisable scrolling in an iframe Pin
GalRatz31-May-06 8:06
GalRatz31-May-06 8:06 
QuestionHow to extract a pattern form a html file Pin
vikramjparekh31-May-06 5:07
vikramjparekh31-May-06 5:07 
AnswerRe: How to extract a pattern form a html file Pin
Paddy Boyd31-May-06 5:37
Paddy Boyd31-May-06 5:37 
AnswerRe: How to extract a pattern form a html file Pin
minhpc_bk31-May-06 15:55
minhpc_bk31-May-06 15:55 
QuestionMaskedTextBox in ASP.NET 2.0? Pin
Brent Lamborn31-May-06 4:17
Brent Lamborn31-May-06 4:17 
AnswerRe: MaskedTextBox in ASP.NET 2.0? Pin
minhpc_bk31-May-06 15:50
minhpc_bk31-May-06 15:50 

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.