ASP.NET Web開發實用程式碼舉例(三)

iDotNetSpace發表於2009-01-20

1.讀取DataGrid控制元件TextBox值

foreach(DataGrid dgi in yourDataGrid.Items)
{
    TextBox tb = (TextBox)dgi.FindControl("yourTextBoxId");
    tb.Text....
}

2.在DataGrid中有3個模板列包含Textbox分別為DG_ShuLiang (數量)、DG_DanJian(單價) 、DG_JinE(金額),分別在5、6、7列,要求在錄入數量及單價的時候自動算出金額即:數量*單價=金額。還要求錄入時限制為數值型。我如何用客戶端指令碼實現這個功能?

 

/>



 

/>



 

’ />



function DoCal()
{
var e = event.srcElement;
var row = e.parentNode.parentNode;
var txts = row.all.tags("INPUT");
if (!txts.length || txts.length < 3)
return;
var q = txts[txts.length-3].value;
var p = txts[txts.length-2].value;
if (isNaN(q) || isNaN(p))
return;
q = parseInt(q);
p = parseFloat(p);
txts[txts.length-1].value = (q * p).toFixed(2);
}

3.datagrid選定比較底下的行時,為什麼總是重新整理一下,然後就滾動到了最上面,剛才選定的行因螢幕的關係就看不到了。

page_load

page.smartNavigation=true

4.在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("Width", "80px")
    } 
}

5.對話方塊

private static string ScriptBegin = "";
private static string ScriptEnd = "";
public static void ConfirmMessageBox(string PageTarget,string Content)
{
    string C+Content+"');"+"if(retValue){window.location='"+PageTarget+"';}";
    ConfirmContent=ScriptBegin + ConfirmContent + ScriptEnd;
    Page ParameterPage = (Page)System.Web.HttpContext.Current.Handler;
    ParameterPage.RegisterStartupScript("confirm",ConfirmContent);
    //Response.Write(strScript);
}

6.將時間格式化:string aa=DateTime.Now.ToString("yyyy年MM月dd日");

取當前年月日時分秒:

currentTime=System.DateTime.Now;
取當前年:

int 年= DateTime.Now.Year;
取當前月:

int 月= DateTime.Now.Month;
取當前日:

int 日= DateTime.Now.Day;
取當前時:

int 時= DateTime.Now.Hour;
取當前分:

int 分= DateTime.Now.Minute;
取當前秒:

int 秒= DateTime.Now.Second;
取當前毫秒:

int 毫秒= DateTime.Now.Millisecond;

7.自定義分頁程式碼:

先定義變數 :

public static int pageCount; //總頁面數 
public static int curPageIndex=1; //當前頁面 
//下一頁: 
if(DataGrid1.CurrentPageIndex < (DataGrid1.PageCount - 1)) { 
    DataGrid1.CurrentPageIndex += 1; 
    curPageIndex+=1; 

bind(); // DataGrid1資料繫結函式

//上一頁: 
if(DataGrid1.CurrentPageIndex >0) { 
    DataGrid1.CurrentPageIndex += 1; 
    curPageIndex-=1; 

bind(); // DataGrid1資料繫結函式

//直接頁面跳轉: 
int a=int.Parse(JumpPage.Value.Trim());//JumpPage.Value.Trim()為跳轉值 
if(a    this.DataGrid1.CurrentPageIndex=a; 

bind();

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-541543/,如需轉載,請註明出處,否則將追究法律責任。

相關文章