Click here to Skip to main content
15,917,875 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
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
Posted
Updated 12-Jul-13 8:41am
v2

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.
 
Share this answer
 
Comments
abey e mathews 12-Jul-13 14:48pm    
its css tutorials ..not .net tutorial.
i not like that like site..

i just need to how to do display more than two testimonials in a page ,feching from database..
ZurdoDev 12-Jul-13 14:51pm    
But you can easily do CSS in .Net. CSS is just formatting. In .Net you would use a repeater control.
abey e mathews 12-Jul-13 15:18pm    
i sucessfully done the work..thanku
abey e mathews 12-Jul-13 15:07pm    
thanku
ZurdoDev 12-Jul-13 15:08pm    
Sure. If you get stuck at a specific issue, come back and post a new question and we'll gladly help.
Start by reading and working through this[^].
 
Share this answer
 
XML
<%@ 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="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT * FROM [Table]"></asp:SqlDataSource>

    </div>
    </form>
</body>
</html>
 
Share this answer
 
Comments
abey e mathews 13-Jul-13 15:19pm    
http://www.codeproject.com/Articles/31819/Pagination-with-Repeater-Control

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900