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 to link to another page using this code here?? HTML?

    Hi, You can use SelectedText and SelectedValue of dropdown object, in your example Selectedtext is Alabama and SelectedValue is AL
  4. M

    How to link to another page using this code here?? HTML?

    Hi, You can use SelectedText and SelectedValue of dropdown object, in your example Selectedtext is Alabama and SelectedValue is AL
  5. M

    How to link to another page using this code here?? HTML?

    Hi, You can use SelectedText and SelectedValue of dropdown object, in your example Selectedtext is Alabama and SelectedValue is AL
  6. M

    stars html changing colors?

    Hi, You can use CSS and write a class like this: <style> .stars{ background-color:Gray; } </style> and in your html code set the attribute class of html tag equal with stars; or set the attribute style of html tag with "background-color:Gray"
  7. M

    stars html changing colors?

    Hi, You can use CSS and write a class like this: <style> .stars{ background-color:Gray; } </style> and in your html code set the attribute class of html tag equal with stars; or set the attribute style of html tag with "background-color:Gray"
  8. M

    stars html changing colors?

    Hi, You can use CSS and write a class like this: <style> .stars{ background-color:Gray; } </style> and in your html code set the attribute class of html tag equal with stars; or set the attribute style of html tag with "background-color:Gray"
  9. M

    how do you access an html text input box in javascript?

    Hi, You can access to the your html tag by document.GetElementById or document.GetElementByName
  10. 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