2014年5月27日 星期二

Windows服務開啟又關閉

Windows服務開啟又關閉:

   可以從事件檢視器中看到相關錯誤訊息,事件檢視器>應用程式。

2014年5月20日 星期二

GridView 開起排序功能 表頭會有底線

GridView 開起排序功能 表頭會有底線

<asp:BoundField DataField="USER_DEPT" SortExpression="USER_DEPT" HeaderText="所屬部門">
            <ItemStyle HorizontalAlign="Center" CssClass="LeftRightBorderCss"></ItemStyle>
            <HeaderStyle HorizontalAlign="Center" Font-Bold="False"></HeaderStyle>
</asp:BoundField>

如要取消底線 只需把 SortExpression="USER_DEPT" 拿掉,但會失去排序功能。

2014年5月15日 星期四

ListBox Enalbed 失效問題

加入 ListBox.Attributes.Add("disabled","true")
         ListBox.Enabled = False
即可解決