Hey guys, the name is Kevin, pretty much my buddy just asked me if I could do some work for him on his site so I told him I could, thing is I dont know much ASP, but can usually manage, well one of the things he needs is a review panel, pretty much how would I go about installing this?
I want to run it in Javascript totally, but it'll be in the " products ".aspx page....
I'm not quite sure how to do this and figure maybe I'll learn a few things by posting..
Pretty much I think I got everything covered all but making the text boxes and getting them to update the database and show, so wouldnt I do this in the functions.js and somehow call it in the products.aspx ( where the reviews panel is ) file? I've tried cracking this one on my own for the past week and I keep getting stumped...
Lemme know what you'd need and I'll supply it, thanks for the help in advance :)
Heres the review panel in products.aspx
<div class="clear"></div>
<div class="product_reviews panel">
<div class="header">Product Reviews</div>
<div class="body">
<div class="add_review"><a onclick="AddReview()">add a review</a></div>
<div class="clear"></div>
<div id="divAddReview">
<div class="hide_review"><a onclick="HideReview()">Close</a></div>
</div>
<div class="clear"></div>
<div class="reviews">
<p><asp:Label ID="lblReviewStatus" runat="server">Reviews coming soon!</asp:Label></p>
<asp:Repeater ID="rptReviews" runat="server"
onitemcommand="rptReviews_ItemCommand">
<HeaderTemplate>
<ul>
</HeaderTemplate>
<ItemTemplate>
<li>
blah
</li>
</ItemTemplate>
<FooterTemplate>
</ul>
</FooterTemplate>
</asp:Repeater>
I tried installing textareas, but they kept showing really huge.
And I would need to update my function for it to save and load, I've tried a few but it doesent seem to load it.