0. セッションを使用してログインするかどうかを決定します
if(セッション["ログイン"] == null)
{
Response.Redirect("error.aspx");
}
1. 新しいウィンドウを開いてパラメータを転送します。
送信パラメータ:
response.write("<script>window.open('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')</script>")
パラメータを受信します。
文字列 a = Request.QueryString("id");
文字列 b = Request.QueryString("id1");
2. ボタンにダイアログボックスを追加します
Button1.Attributes.Add("onclick","returnconfirm('確認?')");
button.attributes.add("onclick","if(confirm('本当に...?')){return true;}else{return false;}")
3. テーブル内の選択したレコードを削除します
int intEmpID = (int)MyDataGrid.DataKeys[e.Item.ItemIndex];
string deleteCmd = "従業員から削除 (emp_id = " + intEmpID.ToString())
4. フォームレコード削除の警告
private void DataGrid_ItemCreated(オブジェクト送信者,DataGridItemEventArgs e)
{
switch(e.Item.ItemType)
{
ケース ListItemType.Item :
ListItemType.AlternatingItem の場合:
ケース ListItemType.EditItem:
テーブルセル myTableCell;
myTableCell = e.Item.Cells[14];
LinkButton myDeleteButton;
myDeleteButton = (LinkButton)myTableCell.Controls[0];
myDeleteButton.Attributes.Add("onclick","returnconfirm('このメッセージを削除してもよろしいですか');");
壊す;
デフォルト:
壊す;
}
}
5. 表の行をクリックして別のページにリンクします
private void grdCustomer_ItemDataBound(オブジェクト送信者、System.Web.UI.WebControls.DataGridItemEventArgs e)
{
// フォームをクリックして開きます
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
e.Item.Attributes.Add("onclick","window.open('Default.aspx?id= + e.Item.Cells[0].Text + "');");
}
テーブルをダブルクリックして itemDataBind イベントの別のページに接続します
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
文字列 OrderItemID =e.item.cells[1].Text;
...
e.item.Attributes.Add("ondblclick", "location.href='../ShippedGrid.aspx?id=" + OrderItemID + "'");
}
表をダブルクリックして新しいページを開きます
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
文字列 OrderItemID =e.item.cells[1].Text;
...
e.item.Attributes.Add("ondblclick", "open('../ShippedGrid.aspx?id=" + OrderItemID + "')");
}
★特記事項: [?id=] を [?id =] にすることはできません。
6. テーブルのハイパーリンク列にパラメータを渡す
<asp:HyperLinkColumn Target="_blank" headertext="ID 番号" DataTextField="id" NavigateUrl="aaa.aspx?id='<%# DataBinder.Eval(Container.DataItem, "データ フィールド 1")%>' & name='<%# DataBinder.Eval(Container.DataItem, "データ フィールド 2")%>' />
7. テーブルをクリックして色を変更します
if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onclick","this.style.backgroundColor='#99cc00';this.style.color='buttontext';this.style.cursor='default';");
}
DataGridの_ItemDataBoundに記述
if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onmouseover","this.style.backgroundColor='#99cc00';this.style.color='buttontext';
this.style.cursor='デフォルト';");
e.Item.Attributes.Add("onmouseout","this.style.backgroundColor='';this.style.color='';");
}
8. 日付形式について
日付形式の設定
DataFormatString="{0:yyyy-MM-dd}"
itemboundイベントにあるはずだと思います
e.items.cell["あなたの列"].text=DateTime.Parse(e.items.cell["あなたの列"].text.ToString("yyyy-MM-dd"))
9. エラー情報を取得し、指定したページに移動するには、Response.Redirect を使用せず、Server.Transfer を使用します。
例えば
// global.asax 内
protected void Application_Error(オブジェクト送信者, EventArgs e) {
if (Server.GetLastError() が HttpUnhandledException である場合)
Server.Transfer("MyErrorPage.aspx");
//HttpUnhandledException 以外の残りの例外は ASP.NET 自体に任せても問題ありません:)
}
リダイレクトするとポストバックが発生し、エラー情報が失われるため、ページガイダンスをサーバー側で直接実行し、エラー処理ページでエラー情報を取得して処理できるようにする必要があります。
10.クリアクッキー
Cookie.Expires=[日付時刻];
Response.Cookies("ユーザー名").Expires = 0
11. カスタム例外処理
//カスタム例外処理クラス
システムを使用する;
System.Diagnostics を使用します。
名前空間 MyAppException
{
/// <概要>
/// システム例外クラス ApplicationException から継承されたアプリケーション例外処理クラス。
/// 例外内容を Windows NT/2000 のアプリケーション ログに自動的に記録します
/// </概要>
パブリック クラス AppException:System.ApplicationException
{
publicAppException()
{
if (ApplicationConfiguration.EventLogEnabled)
LogEvent("不明なエラーが発生しました。");
}
publicAppException(文字列メッセージ)
{
LogEvent(メッセージ);
}
public AppException(文字列メッセージ,例外 innerException)
{
LogEvent(メッセージ);
if (innerException != null)
{
LogEvent(innerException.Message);
}
}
//ロギングクラス
システムを使用する;
System.Configuration を使用します。
System.Diagnostics を使用します。
System.IO を使用します。
System.Text を使用します。
System.Threading を使用します。
名前空間 MyEventLog
{
/// <概要>
/// イベント ログ クラス。イベント ログのサポートを提供します。
/// <備考>
/// 4 つのログ記録方法 (エラー、警告、情報、トレース) を定義します。
/// </コメント>
/// </概要>
パブリック クラス ApplicationLog
{
/// <概要>
/// エラー情報を Win2000/NT イベント ログに記録します
/// <param name="message">記録する文字情報</param>
/// </概要>
public static void WriteError(文字列メッセージ)
{
WriteLog(TraceLevel.Error, メッセージ);
}
/// <概要>
/// 警告情報を Win2000/NT イベント ログに記録します
/// <param name="message">記録する文字情報</param>
/// </概要>
public static void WriteWarning(文字列メッセージ)
{
WriteLog(TraceLevel.Warning, メッセージ);
}
/// <概要>
/// プロンプト情報を Win2000/NT イベント ログに記録します
/// <param name="message">記録する文字情報</param>
/// </概要>
public static void WriteInfo(String message)
{
WriteLog(TraceLevel.Info, メッセージ);
}
/// <概要>
/// トレース情報を Win2000/NT イベント ログに記録します
/// <param name="message">記録する文字情報</param>
/// </概要>
public static void WriteTrace(文字列メッセージ)
{
WriteLog(TraceLevel.Verbose, メッセージ);
}
/// <概要>
/// イベントログに記録されるテキスト情報の形式を整形します
/// <param name="ex">フォーマットする必要がある例外オブジェクト</param>
/// <param name="catchInfo">例外情報のタイトル文字列。</param>
/// <戻り値>
/// <para>例外の内容とトレース スタックを含む、フォーマットされた例外情報文字列。</para>
/// </retvalue>
/// </概要>
public static String FormatException(Exception ex, String catchInfo)
{
StringBuilder strBuilder = new StringBuilder();
if (catchInfo != String.Empty)
{
strBuilder.Append(catchInfo).Append("rn");
}
strBuilder.Append(例:Message).Append("rn").Append(例:StackTrace);
strBuilder.ToString() を返します。
}
/// <概要>
/// 実際のイベントログの書き込み方法
/// <param name="level">記録される情報のレベル (エラー、警告、情報、トレース)。</param>
/// <param name="messageText">記録するテキスト。</param>
/// </概要>
private static void WriteLog(TraceLevel レベル、String messageText)
{
試す
{
EventLogEntryType LogEntryType;
スイッチ(レベル)
{
TraceLevel.Error の場合:
LogEntryType = EventLogEntryType.Error;
壊す;
TraceLevel.Warning の場合:
LogEntryType = EventLogEntryType.Warning;
壊す;
TraceLevel.Info の場合:
LogEntryType = EventLogEntryType.情報;
壊す;
TraceLevel.Verbose の場合:
LogEntryType = EventLogEntryType.SuccessAudit;
壊す;
デフォルト:
LogEntryType = EventLogEntryType.SuccessAudit;
壊す;
}
EventLogeventLog = new EventLog("Application", ApplicationConfiguration.EventLogMachineName, ApplicationConfiguration.EventLogSourceName );
//イベントログを書き込む
イベントログ.WriteEntry(messageText, LogEntryType);
}
catch {} //例外を無視します
}
} //クラス ApplicationLog
}
12.パネルは水平方向にスクロールし、自動的に垂直方向に拡大します。
<asp:panel style="overflow-x:scroll;overflow-y:auto;"></asp:panel>
13. Enter を Tab に変換
<script language="javascript" for="document" events="onkeydown">
if(event.keyCode==13 &&event.srcElement.type!='button' &&event.srcElement.type!='submit' &&event.srcElement.type!='reset' &&event.srcElement.type!=' '&&event.srcElement.type!='textarea');
イベント.キーコード=9;
</script>
onkeydown="if(event.keyCode==13)event.keyCode=9"
14.DataGridスーパー接続列
DataNavigateUrlField="フィールド名" DataNavigateUrlFormatString="}"
15.DataGrid の行はマウスで色が変わります
private void DGzf_ItemDataBound(オブジェクト送信者、System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if (e.Item.ItemType!=ListItemType.Header)
{
e.Item.Attributes.Add( "onmouseout","this.style.backgroundColor=""+e.Item.Style["BACKGROUND-COLOR"]+""");
e.Item.Attributes.Add( "onmouseover","this.style.backgroundColor=""+ "#EFF3F7"+""");
}
}
16. テンプレート列
<ASP:TEMPLATECOLUMNvisible="False" sortexpression="demo" headertext="ID">
<アイテムテンプレート>
<ASP:LABEL text='<%# DataBinder.Eval(Container.DataItem, "ArticleID")%>' runat="server" width="80%" id="lblColumn" />
</ITEMTEMPLATE>
</ASP:テンプレート列>
<ASP:TEMPLATECOLUMN headertext="check">
<HEADERSTYLE Wrap="False"horizontalalign="Center"></HEADERSTYLE>
<アイテムテンプレート>
<ASP:CHECKBOX id="chkExport" runat="server" />
</ITEMTEMPLATE>
<編集テンプレート>
<ASP:CHECKBOX id="chkExportON" runat="server" Enabled="true" />
</EDITITETEMPLATE>
</ASP:テンプレート列>
コードビハインド
protected void CheckAll_CheckedChanged(オブジェクト送信者、System.EventArgs e)
{
//列の選択を変更して、すべてを選択するか、何も選択しないようにします。
チェックボックス chkExport;
if(すべてチェック。チェック済み)
{
foreach(MyDataGrid.Items の DataGridItem oDataGridItem)
{
chkExport = (CheckBox)oDataGridItem.FindControl("chkExport");
chkExport.Checked = true;
}
}
それ以外
{
foreach(MyDataGrid.Items の DataGridItem oDataGridItem)
{
chkExport = (CheckBox)oDataGridItem.FindControl("chkExport");
chkExport.Checked = false;
}
}
}
17. 数値の書式設定 [<%#Container.DataItem("price")%> の結果は 500.0000 ですが、500.00 に書式設定するにはどうすればよいですか?
<%#Container.DataItem("価格","{0:¥#,##0.00}")%>
int i=123456;
文字列 s=i.ToString("###,###.00");
18.日付の書式設定
[aspx ページ内: <%# DataBinder.Eval(Container.DataItem, "Company_Ureg_Date")%>
表示: 2004-8-11 19:44:28
ただ欲しい:2004-8-11】
<%# DataBinder.Eval(Container.DataItem,"Company_Ureg_Date","{0:yyyy-Md}")%>
どのように変更すればよいでしょうか?
[フォーマット日]
それを取り出してください、通常は反対します
((DateTime)objectFromDB).ToString("yyyy-MM-dd");
[日付の検証式]
A. 次の正しい入力形式: [2004-2-29]、[2004-02-29 10:29:39 pm]、[2004/12/31]
^((d{2}(([02468][048])|([13579][26]))[-/s]?((((0?[13578])|(1[ 02]))[-/s]?((0?[1-9])|([1-2][0-9])|
(3[01])))|(((0?[469])|(11))[-/s]?((0?[1-9])|([1-2][ 0-9])|(30)))|(0?2[-/s]?((0?[1-9])|([1-2][0-9]))) ))
|(d{2}(([02468][1235679])|([13579][01345789]))[-/s]?((((0?[13578])|(1[02] ]))[-/s]?((0?[1-9])|([1-2][0-9])
|(3[01])))|(((0?[469])|(11))[-/s]?((0?[1-9])|([1-2] [0-9])|(30)))|(0?2[-/s]?((0?[1-9])|(1[0-9])|(2[0 -8]))))))(s(((0?[1-9])|(1[0-2])):([0-5][0-9])(( s)|(:([0-5][0-9])s))([AM|PM|am|pm]{2,2})))?$
B. 次の正しい入力形式: [0001-12-31]、[9999 09 30]、[2002/03/03]
^d{4}[-/s]?((((0[13578])|(1[02]))[-/s]?(([0-2][0 -9])|(3[01])))|(((0[469])|(11))[-/s]?(([0-2][0-9])| (30)))|(02[-/s]?[0-2][0-9]))$
【大文字小文字変換】
HttpUtility.HtmlEncode(文字列);
HttpUtility.HtmlDecode(文字列)
19. グローバル変数の設定方法
グローバル.asax
Application_Start() イベント内
アプリケーション[プロパティ名] = xxx; を追加します。
それはグローバル変数です
20. HyperLinkColumn によって生成された接続をクリックした後に新しいウィンドウを開くにはどうすればよいですか?
HyperLinkColumn には Target 属性があります。値を「_blank」に設定するだけです (Target="_blank")。
[ASPNETMENU] メニュー項目をクリックして、新しいウィンドウをポップアップします。menuData.xml ファイルのメニュー項目に URLTarget="_blank" を追加します。
のように:
<?xml バージョン="1.0" エンコーディング="GB2312"?>
<MenuData ImagesBaseURL="images/">
<メニューグループ>
<MenuItem Label="内部パラメータ情報" URL="Infomation.aspx" >
<メニューグループID="BBC">
<MenuItem Label="お知らせ情報" URL="Infomation.aspx" URLTarget="_blank" LeftIcon="file.gif"/>
<MenuItem Label="情報ブリーフィングの準備" URL="NewInfo.aspx" LeftIcon="file.gif" />
...
aspnetmenu をバージョン 1.2 にアップグレードすることをお勧めします。
21. 委員会の議論
22. DataGrid コントロールの TextBox 値を読み取ります。
foreach(yourDataGrid.Items の DataGrid dgi)
{
TextBox tb = (TextBox)dgi.FindControl("yourTextBoxId");
tb.テキスト....
}
23. DataGrid には、テキストボックスを含む 3 つのテンプレート列があります: DG_ShuLiang (数量)、DG_DanJian (単価)、および DG_JinE (金額) は列 5.6.7 にあります。数量と単価、つまり: 数量 * 単価 = 入力する場合、金額も数値に制限する必要があります。この機能を実装するには、クライアント スクリプトを使用するにはどうすればよいですか?
〖復帰を考えています〗
<asp:TemplateColumn HeaderText="数量">
<アイテムテンプレート>
<asp:TextBox id="ShuLiang" runat='server' Text='<%# DataBinder.Eval(Container.DataItem,"DG_ShuLiang")%>'
onkeyup="javascript:DoCal()"
/>
<asp: RegularExpressionValidator id="revS" runat="server" ControlToValidate="ShuLiang" ErrorMessage="整数である必要があります" ValidationExpression="^d+$" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="単価">
<アイテムテンプレート>
<asp:TextBox id="DanJian" runat='server' Text='<%# DataBinder.Eval(Container.DataItem,"DG_DanJian")%>'
onkeyup="javascript:DoCal()"
/>
<asp: RegularExpressionValidator id="revS2" runat="server" ControlToValidate="DanJian" ErrorMessage="数値である必要があります" ValidationExpression="^d+(.d*)?$" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="Amount">
<アイテムテンプレート>
<asp:TextBox id="JinE" runat='server' Text='<%# DataBinder.Eval(Container.DataItem,"DG_JinE")%>' />
</ItemTemplate>
</asp:TemplateColumn>
<スクリプト言語="javascript">
functionDoCal()
{
var e = イベント.srcElement;
var row = e.parentNode.parentNode;
var txts = row.all.tags("INPUT");
if (!txts.length || txts.length < 3)
戻る;
var q = txts[txts.length-3].value;
var p = txts[txts.length-2].value;
if (isNaN(q) || isNaN(p))
戻る;
q = parseInt(q);
p = parseFloat(p);
txts[txts.length-1].value = (q * p).toFixed(2);
}
</script>
24.データグリッドの下部にある行が比較のために選択されている場合、常に更新されてから上部にスクロールするのはなぜですか? 画面のせいで、選択したばかりの行が表示されません。
ページロード
page.smartNavigation=true
25. Datagrid でデータを変更するときに編集キーをクリックすると、テキスト ボックスにデータが表示されます。テキスト ボックスのサイズを制御するにはどうすればよいですか?
private void DataGrid1_ItemDataBound(obj sender,DataGridItemEventArgs e)
{
for(int i=0;i<e.Item.Cells.Count-1;i++)
if(e.Item.ItemType==ListItemType.EditType)
{
e.Item.Cells.Attributes.Add("幅", "80px")
}
}
26. ダイアログボックス
private static string ScriptBegin = "<script language="JavaScript">";
プライベート静的文字列 ScriptEnd = "</script>";
public static void confirmMessageBox(string PageTarget,string Content)
{
string confirmContent="var retvalue="/blog/window.confirm('"+Content+"');"+"if(retValue){window.location="'"+PageTarget+"';}";
確認コンテンツ=スクリプト開始 + 確認コンテンツ + スクリプト終了;
ページパラメータページ = (ページ)System.Web.HttpContext.Current.Handler;
ParameterPage.RegisterStartupScript("確認",確認コンテンツ);
//Response.Write(strScript);