if (Session["login"] == 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('confirm?')");
button.attributes.add("onclick","if(confirm('よろしいですか) .. .?')){true を返す;}else{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(オブジェクト送信者,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(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)
{
文字列 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("不明なエラーが発生しました。");
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 を 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"
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, "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: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("price","{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)
19. グローバル変数の設定方法
Global.asax の
Application_Start() イベントに
、グローバル変数である
Application[attribute name] = xxx; を追加します
。20. HyperLinkColumn によって生成された接続をクリックして新しいウィンドウを開くにはどうすればよいですか?
HyperLinkColumn には Target 属性があります。値を「_blank」に設定するだけです (Target="_blank")
[ASPNETMENU] メニュー項目をクリックして、menuData のメニュー項目に URLTarget="_blank" をポップアップします。 .xml ファイル。
のように:
<?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. 参加者によるディスカッション
http://community.csdn.net/Expert/topic/2651/2651579.xml?temp=.7183191
http://dev.csdn.net/develop/article/22/22951.shtm
22. DataGrid コントロールの TextBox 値を読み取ります
(DataGrid dgi in yourDataGrid.Items)。
{
TextBox tb = (TextBox)dgi.FindControl("yourTextBoxId");
tb.テキスト....
23.
DataGrid には、テキストボックスを含む 3 つのテンプレート列があります。それぞれ列 5.6.7 の DG_ShuLiang (数量)、DG_DanJian (単価)、および DG_JinE (金額) です。数量を入力するときに金額を自動的に計算する必要があります。と単価、つまり: 数量 * 単価 = 入力する場合、金額も数値に制限する必要があります。
〖Sigui〗
クライアント スクリプトを使用してどのように実装すればよいですか?
<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">";
private static string ScriptEnd = "</script>";
public static void confirmMessageBox(string PageTarget,string Content)
{
confirmContent
="var retvalue="/blog/window.confirm('"+Content+"');"+"if(retValue){window.location="'"+PageTarget+"';}";
+ confirmContent + ScriptEnd
ページ パラメーターページ = (ページ)System.Web.HttpContext.Current.Handler;
ParameterPage.RegisterStartupScript("確認",確認コンテンツ);
//Response.Write(strScript
);
http://www.cnblogs.com/robber/archive/2007/01/09/615835.html