如何为推荐书创建一个asp.net页面 [英] how to create a asp.net page for testimonials

查看:117
本文介绍了如何为推荐书创建一个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

推荐答案

如果你想确定使用哪种控件,你可以给作者发电子邮件,但我怀疑你会得到答复。



但是,你的第二个链接是如何做到的教程。所以,看来你有答案。
If you want to be sure of which control is used you can email the author, but I doubt you would get a response.

However, your second link is a tutorial to how to do it. So, it appears you have your answer.


首先阅读并通过 this [ ^ ]。
Start by reading and working through this[^].


<%@ 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页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆