|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP是依赖组件的,能访问数据库的组件好多就有好多种,再有就是你微软的工具可是什么都要收钱的啊!模板ASP.NET供应的Repeater模板其实不带有分页功效,假如是大批数据的话使用Repeater模板来完成分页仍是不错的,究竟Repeater模板较为天真。
<%@Pagelanguage="c#"Codebehind="WebForm1.aspx.cs"AutoEventWireup="false"Inherits="WebApplication1.WebForm1"%>
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<metaname="GENERATOR"Content="MicrosoftVisualStudio.NET7.1">
<metaname="CODE_LANGUAGE"Content="C#">
<metaname="vs_defaultClientScript"content="JavaScript">
<metaname="vs_targetSchema"content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<bodyMS_POSITIONING="GridLayout">
<formid="Form1"method="post"runat="server">
<FONTface="宋体">
<asp:Repeaterid="Repeater1"runat="server">
<HeaderTemplate>
<tableborder="0">
<tr>
<td><fontcolor="Highlight">编号</font></td>
<td><fontcolor="Highlight">称号</font></td>
<td><fontcolor="Highlight">形貌</font></td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<trbgcolor="LightYellow">
<td>
<%#DataBinder.Eval(Container.DataItem,"CategoryID")%>
</td>
<td>
<%#DataBinder.Eval(Container.DataItem,"CategoryName")%>
</td>
<td>
<%#DataBinder.Eval(Container.DataItem,"Description")%>
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr>
<td><%#DataBinder.Eval(Container.DataItem,"CategoryID")%></td>
<td><%#DataBinder.Eval(Container.DataItem,"CategoryName")%></td>
<td><%#DataBinder.Eval(Container.DataItem,"Description")%></td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
<asp:ImageButtonCommandName="previous"ID="previous"ImageUrl=".imagesprevious.gif"Runat="server"/>
<asp:ImageButtonCommandName="next"ID="next"ImageUrl=".images
ext.gif"Runat="server"/>
</FooterTemplate>
</asp:Repeater></FONT>
</form>
</body>
</HTML>
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Data.SqlClient;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
namespaceWebApplication1
{
/**////<summary>
///WebForm1的择要申明。
///</summary>
publicclassWebForm1:System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.RepeaterRepeater1;
protectedSqlConnectioncon=null;
protectedstringCON_STR="server=192.168.0.99;database=Northwind;userid=sa;password=jabby";
protectedstringSQL_QUERY="select*fromCategories";
protectedSqlDataAdapterda=null;
protectedDataSetds=null;
privatevoidPage_Load(objectsender,System.EventArgse)
{
i</p>写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们) |
|