1. 新しいウィンドウを開いてパラメータを送信します。
パラメータの送信:
response.write("<script>window.open
('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="++"')</ script>") は
パラメータを受け取ります:
string a = Request.QueryString("id");
string b = Request.QueryString("id1");
2. ボタンにダイアログ ボックスを追加します
Button1.Attributes.Add("onclick", "returnconfirm('confirm?')");
button.attributes.add("onclick","if(confirm('are you so?'))
{return true;}else{return false;}")
3.フォームを削除します 選択されたレコード
int intEmpID = (int)MyDataGrid.DataKeys[e.Item.ItemIndex];
string deleteCmd = "DELETE from Employee where emp_id = " + intEmpID.ToString()
4. テーブル レコードの削除警告
private void DataGrid_ItemCreated(Object) sender, DataGridItemEventArgs e)
{
switch(e.Item.ItemType)
{
case ListItemType.Item :
case ListItemType.AlternatingItem :
case ListItemType.EditItem:
TableCell myTableCell
=
e.Item.Cells[14]
;
LinkButton) myTableCell.Controls[0];
myDeleteButton.Attributes.Add
("onclick",
"returnconfirm('この情報を削除してもよろしいですか');");
5.
を
クリック
し
ます。
テーブルの行リンク 別のページ
private void grdCustomer_ItemDataBound
(object sender, 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)
{
string OrderItemID =e.item.セル[1].テキスト;
e.item.Attributes.Add("ondblclick",
"location.href='../ShippedGrid.aspx?id=" + OrderItemID + "'")
}
テーブルをダブルクリックして新しいページを開きます。
if(e .Item.ItemType == ListItemType.Item ||
e.Item.ItemType == ListItemType.AlternatingItem)
{
string 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 number" DataTextField="id"
NavigateUrl="aaa.aspx?id='<%# DataBinder.Eval(Container.DataItem, "データ フィールド 1")%>'
& name='<%# DataBinder.Eval(Container.DataItem, "データ フィールド 2")%>' />
7. テーブルをクリックして色を変更します
(e.Item.ItemType == ListItemType.Item || e.ItemType == ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onclick","this.style.backgroundColor='#99cc00';
this.style.color='ボタンテキスト';this.style.cursor='デフォルト';");
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='ボタンテキスト';this.style.cursor='デフォルト';");
e.Item.Attributes.Add("onmouseout","this.style.backgroundColor='';this.style.color='';");
8.
日付形式については、
日付形式の設定
DataformatString="{0:yyyy-MM-dd}"
は itembound イベントe.items.cell["your column"].text=DateTime
にあると思います
。Parse(e .items.cell["your column"].text.ToString("yyyy-MM-dd"))
9. エラー メッセージを取得して指定したページに移動するには、
Response.Redirect を使用せず、次のメソッドを使用します。 Server.Transfer
例:
// in 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("不明なエラーが発生しました。");
public
AppException(文字列メッセージ)
{
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 を入力してタブに変換します
<script language="javascript" for="ドキュメント" イベント="onkeydown">
if(event.keyCode==13 &&event.srcElement.type!='ボタン' &&
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"
http://dotnet.aspx.cc/exam/enter2tab.aspx
14.DataGrid スーパー接続列
DataNavigateUrlField="フィールド名" DataNavigateUrlformatString =" http://xx/inc/delete.aspx?ID={0 }"
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,
"記事ID")%>' runat="server" width="80%" id="lblColumn" />
</ITEMTEMPLATE>
</ASP:TEMPLATECOLUMN>
<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:TEMPLATECOLUMN>
バックエンド コード
が保護されています void CheckAll_CheckedChanged(object sender, 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;
string 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(string);
HttpUtility.HtmlDecode(string)
Application_Start() イベントで
グローバル変数 Global.asax を設定し、Application[属性名] = xxx; を追加する方法
これはグローバル変数です。
20. HyperLinkColumn によって生成された接続を作成するには、接続をクリックして新しいウィンドウを開きます。
HyperLinkColumn には Target 属性があります。値を「_blank」に設定するだけです (Target="_blank")
[ASPNETMENU] メニュー項目をクリックして、menuData のメニュー項目に URLTarget="_blank" をポップアップします。 .xml ファイル。
例:
<?xml version="1.0" encoding="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 にアップグレードすることをお勧めします。