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)...
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...
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"
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"
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"
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?