Advertisement
Advertisement
| 05.25.2008 at 11:37PM PDT, ID: 23432132 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: |
READ>ASPX SOURCE:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Read Page</title>
<link rel="stylesheet" type="text/css"
href="Princess.CSS" />
</head>
<body id="read">
<form id="form1" runat="server">
<!--#include file="CSS_Stuff/Header.inc"-->
<div id="content2" class="pageBodyDiv">
<label class="labels" style="top: 7px; left: 8px">Categories:</label>
<asp:DropDownList ID="ddlCategories" runat="server" Style="background-color: LightGrey; width: 200px; left: 10px; position: absolute; top: 25px"></asp:DropDownList>
<label class="labels" style="top: 60px; left: 8px">Stories:</label>
<asp:ListBox ID="lbStoryList" runat="server" Style="background-color: LightGrey; width: 200px; left: 10px; position: absolute; top: 77px; height: 350px"></asp:ListBox>
<label class="labels" style="font-size:small; top:430px; left: 8px">Double-click to load highlighted story</label>
<label class="labels" style="top: 7px; left: 300px">Story:</label>
<asp:TextBox ID="txtStory" CssClass="TextBoxes" runat="server" Style="position: relative; left: 100px; top: 25px; width: 500px; height: 900px" TextMode="MultiLine"></asp:TextBox>
</div>
<!--#include file="CSS_Stuff/Footer.inc"-->
</form>
</body>
</html>
CSS SOURCE:
body
{
background: url(CSS_Stuff/paper.gif);
font: Verdana, "Minion Web", Helvetica, sans-serif;
}
.pageHeaderDiv
{
padding: 0px;
width:100%;
height:125px;
background-image: url(CSS_Stuff/blspeck.jpg);
left: 0;
top: 0;
position:fixed;
color:White;
text-align:center;
z-index:9;
}
.pageBodyDiv
{
width: 100%;
padding: 0px;
height:700px;
text-align:center;
}
.pageFooterDiv
{
position: relative;
top: 100px;
}
.smallerFontSize
{
font-size: smaller;
}
.labels
{font: smallerFontSize;
position: absolute;
}
.TextBoxes
{
font: smallerFontSize;
background-color:;
}
#headerPic {position: absolute; top: 28px; left: 825px}
#content1
{width: 60%; margin-left:auto; margin-right:auto; position:relative; top: 200px;
border:2px solid black; padding:10px;
}
#content2
{width: 100%; position:relative; top: 125px;
}
ul#menu { top: -30px; width: 40%; height: 38px; background: #FFF url("CSS_Stuff/menu-bg.gif") top left repeat-x; font-size: 0.8em; font-family: "Lucida Grande", Verdana, sans-serif; font-weight: bold; list-style-type: none; margin: 0; padding: 0;}
ul#menu li { display: block; float: left; margin: 0 0 0 5px; }
ul#menu li a { height: 38px; color: black; text-decoration: none; display: block; float: left; line-height: 200%; padding: 8px 15px 0; }
ul#menu li a:hover { color: red; background-color:Silver }
ul#menu li a.current{ color: Black; background: gray url("CSS_Stuff/current-bg.gif") top left repeat-x; padding: 5px 15px 0; }
body#home a#menuHome,
body#read a#menuRead,
body#evaluate a#menuEvaluate,
body#write a#menuWrite,
body#email a#menuEMail
{
color: #fff;
background: #930;
}
HEADER.INC:
<div id="pgheader" class="pageHeaderDiv" >
<h1>Princess And The Paupers</h1>
<img id="headerPic" height="70" src="CSS_Stuff/Princess.jpg" width="144" style="border-width:5px;" />
<center><ul id='menu'>
<li ><a href='Default.aspx' id='menuHome' >Home</a></li>
<li ><a href='Read.aspx' id='menuRead' >Read</a></li>
<li ><a href='Evaluate.aspx' id='menuEvaluate' >Evaluate</a></li>
<li ><a href='Write.aspx' id='menuWrite' >Write</a></li>
<li ><a href='EMail.aspx' id='menuEMail' >EMail</a></li>
</ul>
</center>
</div>
FOOTER.INC:
<div id="pgFooter" class="pageFooter">
<hr align="center" color="Black" height= "15px" width="75%" />
<label class="smallerFontSize">Copyright Allan Van Riel @ 2008</label>
</div>
|