ASP.net DataList控件
2022/1/13 1:12:32
本文主要是介绍ASP.net DataList控件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一.说明
此控件的用法与**Repeater,**类似,如有需要请移步ASP.net Repeater控件
二.步骤
添加控件
并点击属性生成器…
选择直接需要的属性:
三.前端代码
前端代码只是简单的布置
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="WebApplication6.WebForm3" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <style> td{ border:1px solid #000000; border-collapse:collapse; } </style> </head> <body> <form id="form1" runat="server"> <div> <asp:DataList ID="DataList1" runat="server" RepeatColumns="2" RepeatDirection="Horizontal"> <%--同样也是有页眉,页未等等--%> <ItemTemplate> <table> <tr> <td><%#Eval("id") %></td> <td><%#Eval("name") %></td> </tr> </table> </ItemTemplate> </asp:DataList> </div> </form> </body> </html>
四.后端代码
后端代码并没有怎么改变:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication6 { public partial class WebForm3 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { DataList1.DataSource = MyDBSql.excutSql("select * from student"); DataList1.DataBind(); } } }
界面效果:
这篇关于ASP.net DataList控件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#