本文介绍了如何为推荐书创建一个asp.net页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何为推荐书创建一个asp.net页面
类似下面的页面..请告诉我使用哪个控件,我可以通过循环使用。
http://beta.partysuppliesnow.com.au/customer-reviews.php
http://www.siteart.co.uk/pretty-css -testimonials
how to create a asp.net page for testimonials
similar page like below..please tell which control is used for that,can i do by using a loop.
http://beta.partysuppliesnow.com.au/customer-reviews.php
http://www.siteart.co.uk/pretty-css-testimonials
推荐答案
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="StyleSheet.css" rel="stylesheet" />
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
<ItemTemplate>
<blockquote class="testimonial">
<%#Eval("msg")%>
</blockquote>
<div class="arrow-down"></div>
<p class="testimonial-author"><%#Eval("name")%> | <span> <%#Eval("company")%></span></p>
</ItemTemplate>
</asp:Repeater>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%
这篇关于如何为推荐书创建一个asp.net页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!