Search results

  1. M

    How can I write asp.net(C#)paging?

    Hi all, I wrote this function for DataGrid Paging protected void DataGrid1_PageIndexChanged(object source, DataGridPageChangedEventArgs e) { if (e.NewPageIndex < 0) DataGrid1.CurrentPageIndex = 0; else if (e.NewPageIndex < DataGrid1.PageCount)...
  2. M

    How can I write asp.net (C#) DataGrid Paging?

    Hello, I use this code but it dose not work,Please help me protected void DataGrid1_PageIndexChanged(object source, DataGridPageChangedEventArgs e) { DataGrid1.CurrentPageIndex = e.NewPageIndex; DataGrid1.DataSource = v_reader;// v_reader is the name of SqlDataReader that...
  3. M

    How can I use InnerHtml within ASP.NET 3.5?

    I use this tag: <div id="Insert" runat="server"></div> and then in cs code I write a code like this string str; str = "<h1>??? ??????? ?? ?????? ????? ??</h1>"; Insert.InnerHtml = str; but the string dose not show on the broswer, what's the error?
Back
Top