This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<header></header> | |
<section> | |
<div class="column-left"></div> | |
<div></div> | |
<div class="column-right"></div> | |
</section> | |
<footer></footer> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
header, footer { | |
position: fixed; | |
width: 100%; | |
background-color: black; | |
} | |
header { | |
top: 0; | |
height: 50px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
section { | |
position: fixed; | |
width: 100%; | |
top: 50px; | |
bottom: 100px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<div class="column-left"></div> | |
<div></div> | |
<div class="column-right"></div> | |
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE wp_posts SET ping_status='closed' | |
WHERE post_status = 'publish' | |
AND post_type = 'post'; | |
UPDATE wp_posts SET ping_status='closed' | |
WHERE post_status = 'publish' | |
AND post_type = 'page'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE wp_posts SET ping_status='closed' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<asp:GridView | |
ID="gvMyGridID" runat="server" | |
DataSourceID="myDataSource" | |
AutoGenerateColumns="False" | |
GridLines="None" | |
AllowPaging="true" | |
CssClass="myGridClass" | |
PagerStyle-CssClass="myPagerClass" | |
AlternatingRowStyle-CssClass="myAltRowClass"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.myGridClass { | |
width: 100%; | |
/*this will be the color of the odd row*/ | |
background-color: #fff; | |
margin: 5px 0 10px 0; | |
border: solid 1px #525252; | |
border-collapse:collapse; | |
} | |
/*data elements*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Runtime.InteropServices; | |
using System.Diagnostics; |
OlderNewer