<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
AutoGenerateColumns="False" CellPadding="4" EnableModelValidation="True"
ForeColor="#333333" GridLines="None">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:TemplateField HeaderText="xtitle">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("xtitle") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("xtitle") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="xsubtitle">
<EditItemTemplate>
<asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("xsubtitle") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("xsubtitle") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
</asp:GridView>
Protected Sub GridView1_PageIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewPageEventArgs) Handles GridView1.PageIndexChanging
GridView1.PageIndex = e.NewPageIndex
bindGridView()
End Sub
Sub bindGridView()
Dim strDbCon As String = "Data Source=(local);Initial Catalog=DB14017;Persist Security Info=True;User ID=sa;Password=5342601water"
Dim con As New SqlConnection(strDbCon)
Dim ad As New SqlDataAdapter("select * from tw_job_tb where xpublish='yes' order by xcredate desc", con)
Dim dt As New DataTable
ad.Fill(dt)
With GridView1
.DataSource = dt
.DataBind()
End With
End Subㄎ
2017年5月9日 星期二
2017年5月4日 星期四
view count of confluence
https://www.appfusions.com/display/CONFENGAGE/Documentation
https://community.atlassian.com/t5/Confluence-questions/I-d-like-to-know-the-page-view-numbers/qaq-p/164636
https://confluence.atlassian.com/adminjiraserver073/logging-and-profiling-861253813.html?_ga=2.240729667.1995661888.1493898694-1060574096.1486998398
https://community.atlassian.com/t5/Confluence-questions/Page-Hit-count-for-confluence/qaq-p/390350
http://linoxide.com/ubuntu-how-to/awstats/
https://community.atlassian.com/t5/Confluence-questions/I-d-like-to-know-the-page-view-numbers/qaq-p/164636
https://confluence.atlassian.com/adminjiraserver073/logging-and-profiling-861253813.html?_ga=2.240729667.1995661888.1493898694-1060574096.1486998398
https://community.atlassian.com/t5/Confluence-questions/Page-Hit-count-for-confluence/qaq-p/390350
http://linoxide.com/ubuntu-how-to/awstats/
訂閱:
文章 (Atom)