Time of Update: 2018-12-08
伺服器控制項顯示圖片問題不大,會自動顯示相對位置, 非伺服器控制項有兩種方法解決: 1. Request.ApplicationPath + 圖片路徑(images/xxx.gif) : 資料庫裡 圖片路徑以檔案夾名開頭 2. ResolveClientUrl("(~/images/xxx.gif") : 資料庫裡 圖片路徑為(~/開頭) 注意: ResolveClientUrl 返回相對於當前頁面下檔案的地址 ResolveUrl 則返回頁面所在應用程式下的相對位址
Time of Update: 2018-12-08
在web.config裡設定如下: 複製代碼 代碼如下:<?xml version="1.0" encoding="utf-8" ?> <!--overred--> <configuration> <configSections> <section name="RewriterConfig"type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter"
Time of Update: 2018-12-08
今天在後台動態產生一個html控制項,類似這樣HtmlTableCell cell = new HtmlTableCell(); 直接給cell.InnerHtml = "儲存格html代碼";然後頁面顯示是可以的,當使用cell.Controls.Add(new Control())時候頁面卻輸出為:"無法擷取 的內部內容,因為該內容不是文本"。後來網上找到解決辦法: 複製代碼 代碼如下: StringBuilder sb = new StringBuilder();
Time of Update: 2018-12-08
複製代碼 代碼如下:using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls;
Time of Update: 2018-12-08
原本準備在上一篇中直接修改的,無奈編輯功能太差,開啟一堆html代碼,空格“ ”都看的人眼花繚亂,只好另開一篇。 升級說明:添加了針對一個介面多個職能提示位置的設定,只需修改文字框onfocus="fnStartInterval(this,'DropDownList2')",
Time of Update: 2018-12-08
如下: 原始碼如下: 複製代碼 代碼如下:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts;
Time of Update: 2018-12-08
以後我會陸續的寫出這段時間中學習到的東西,與大家一起分享。這篇文章也算是工作中的一個筆記吧,希望給遇到同樣問題的朋友,一點小小的協助。 在 開發工作中,因為要做用到CheckBoxList在用戶端用js操作,無論js怎樣調試,就是無法擷取value的值,很是鬱悶,後來Google了下,去了趟CodeProject,算是幸運的。我們在網頁上放置一下代碼: 複製代碼 代碼如下:<asp:CheckBoxList runat="server" ID="chkDemo"
Time of Update: 2018-12-08
比如每天淩晨七點的時候email發送一次報表。 這裡首先想到的就是利用 Global.asax 檔案來實現, 以下Global檔案的內容。 複製代碼 代碼如下:<%@ Application Language="C#" %> <%@ Import Namespace="System.Threading" %> <script runat="server"> //這裡使用靜態保持對這處Timer執行個體的引用,以免GC private static
Time of Update: 2018-12-08
複製代碼 代碼如下:public string OutputByLine(string strContent)//通過設定的行數分頁 { int pageSize = int.Parse(ConfigurationManager.AppSettings["pageSize"]);//每頁顯示行數從CONFIG檔案中取出 string lineBreak = ConfigurationManager.AppSettings["lineBreak"];//分行符號從CONFIG檔案中取出
Time of Update: 2018-12-08
--前台 複製代碼 代碼如下:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Successed.aspx.cs" Inherits="Biz_Order_Successed" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
Time of Update: 2018-12-08
在html頁中,定義了TextBox控制項, 複製代碼 代碼如下:<td align="center" style="width: 183px; height: 25px"> 緯度:<asp:TextBox ID="TextBox_l" runat="server" Width="76px"></asp:TextBox> 經度:<asp:TextBox ID="TextBox_2" runat="server" Width="95px"></
Time of Update: 2018-12-08
複製代碼 代碼如下:#region 方法一: DataTable tblDatas = new DataTable("Datas"); DataColumn dc = null; dc = tblDatas.Columns.Add("ID", Type.GetType("System.Int32")); dc.AutoIncrement = true;//自動增加 dc.AutoIncrementSeed = 1;//起始為1 dc.AutoIncrementStep = 1;//步長為1
Time of Update: 2018-12-08
複製代碼 代碼如下:if (!IsPostBack) { //一級分類列表 this.DropDownList1.DataSource = dsbb.SelectSubjct1(); this.DropDownList1.DataTextField = "cName"; this.DropDownList1.DataValueField = "Ccode"; this.DropDownList1.DataBind(); this.DropDownList1.Items.Insert(0,new
Time of Update: 2018-12-08
複製代碼 代碼如下:using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using
Time of Update: 2018-12-08
伺服器控制項雖然用起來方便,但是也犧牲了效能,有些時候用起來顯得大而無當。希望先進朋友多多指教。複製代碼 代碼如下:/// <summary> /// 工程業績--用for迴圈代替了DataList多列顯示,得到2行四列的表格,需要記憶體表的8行資料 /// </summary> private void GcyjShow() { StringBuilder sb = new StringBuilder(); ProductBLL pb = new ProductBLL(
Time of Update: 2018-12-08
複製代碼 代碼如下:using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using
Time of Update: 2018-12-08
在這裡我給大家介紹或者說是展示一下我自己的做的兩種模態對話方塊方法一 本方法是採用ASP.NET AJAX的擴充控制項:ASP.NET AJAX Control Tool Kit中的ModalPopupExtender控制項實現的: 第一步,我們先建立一個ASP.NET頁面:ModalPopup.aspx 頁面代碼: 複製代碼 代碼如下:<%@ Page Language="C#" AutoEventWireup="true"
Time of Update: 2018-12-08
方法一: Home/Index.aspx中的代碼 複製代碼 代碼如下:<% using (Html.BeginForm("up","Home",FormMethod.Post,new{enctype="multipart/form-data"})) {%> <input type="file" name="upfile" /> <input type ="submit" name ="upload" value ="上傳" /> <%} %>
Time of Update: 2018-12-08
在網上搜了一下事件執行順序,並經過測試在有分頁的情況下是不正確的。事件執行順序: 一、GridView 顯示繫結資料(預設為5行): 複製代碼 代碼如下:DataBinding RowCreated:Header[0] RowDataBound RowCreated:DataRow[1] RowDataBound RowCreated:DataRow[2] RowDataBound RowCreated:DataRow[3] RowDataBound RowCreated:DataRow[4]
Time of Update: 2018-12-08
IIS收到請求-->ISAPI用於處理該請求-->BeginRequest開始-->EndRequest結束-->輸出Response 中間有好多其它的流程就不標記了,這裡只是列出URLRewrite所走的流程。 其實就是在BeginRequest事件中調用HttpContext的RewritePath方法,將該請求重新“定位”至一個目標URL就完成了。 在網站的Global.asax檔案BeginRequest方法中添加代碼: 複製代碼 代碼如下:public