Web Forms :: Implement Form To Accept Comments
Nov 28, 2013I want to accept user comments and store it in database.
View 1 RepliesI want to accept user comments and store it in database.
View 1 Replieshow can i make a simple user comments form using xml. comments entered by the user should be saved in xml.
format of the form:
name: email:comments:
Over team developed a website, which is base on blog post and share post , Actully i need to impelement commints on each post and mainten the tree on each comments (In simple way to say just like youtube)
View 1 RepliesI have a product (web application) in asp.net. We have different clients(Say A,B,C...) in the site. There are Users associated with each client who can make donations to the respective client through online. (By credit card, Online transfer etc)Now I want to implement Payment gateway to accept the donations and put it into client's account.
View 1 RepliesI've written a small class .That has a method for adding and subtracting.
My class file is fine and everything works well when I hard code the integer values. But the moment I try to use textboxes in my methods signature to accept values it complains that this is an inavlid argument. I assume that this is because I used int as my signatures but then how can i use my class to textboxes as input.
Class Code
[Code]....
Code behind where error occurs
[Code]....
How user post comment on my website using gmail ,fb,yahoo ,hotmail account ...
how to apply this.. [URL] ....
Have a simple Comments form syntax with CSS, so that a person can leave his/her name, e-mail, subject and comments. the form that can write under the question when Reply is pressed by the person.
example:
Question Reply
I want to know case sensitive password for my login form(C#).
View 1 Repliesi want to implement a sort of feedback form/survey form in asp.net which is linked to a database. i want to create a asp.net application which will take questions from a database then display them on the form. once the user has finished the survey the results will be stored into the database.
View 3 Replieshow can i implement captcha for registin form?
View 5 RepliesHow to implement form authentication wcf service?
View 1 Repliesi need the code for desing and implement the registeration form
View 1 RepliesI need to implement a centralized form validation framework for my ASP.NET(C#) 3.5 website.
And for this I have tried the following solutions-
[URL]
[URL]
I have added the .dll file in my project's BIN folder and for Matt Gibb's solution I have also added the tagMapping code to web.config file. But for both of the solution, when I ran the project I noticed it doesn't have any effect on the validation controls.
I am using ASP.NET 4.0 Web Forms. I learned that, in order to optimize my Web Application for Search Engine, I must implement custom 404 page. But the way Microsoft tell us to implement custom 404 (within Web.Config file), that is not good for SEO. Microsoft says,
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="404" redirect="Page-Not-Found.aspx" />
</customErrors>
But when the page is not found, IIS issue 302 redirect to Page-Not-Found.aspx page which is not good. So, I implemented custom 404 page using Routing technique that is available in ASP.NET 3.5 SP1 and 4.0. I used the following router in Global.asax page
I want to use this fancy Ajax Login Form with ASP.NET:www.bitrepository.com/ajax-login-modal-box.htmlThe example uses PHP as the backend. May I use the ASP.NET Login Control?
View 2 RepliesI've got 3 SqlDataSource controls, and 2 dropdownlists and 1 detailsview on a page. The first SqlDataSource is associated with the first dropdownlist, and second SqlDataSource (which is filtered based upon the selection chosen in the first dropdownlist) is associated with the second dropdownlist and the third SqlDataSource (which is filtered both by the selection of the first dropdownlist and the second dropdownlist) is associated with the detailsview. The idea is the user selects something in the first dropdownlist, and it is supposed to update what is returned by the second SqlDataSource control and second dropdownlist, and that in turn is supposed to change what is returned in the third SqlDataSource control and it's associated detailsview. All of the dropdownlists have AutoPostback set to True.
View 11 RepliesHow can implement a Email Inquiry Form in MasterPage using Asp.net ...
View 1 RepliesMy requirement is multiple domains (not subdomains) share cookie of form authentication
how to implement same?
I want to display guest comments on web page so here is my asp source page :
<form id="form1" runat="server">
<div>
<asp:TextBox ID="name" runat="server"></asp:TextBox>
<br />
<br />
<asp:TextBox ID="tb1" runat="server" Width="331px" Height="151px"></asp:TextBox>
[Code] ....
I am using Label to display comments so in Csharp coding to display Comments on web page where One Default Image should be display , Name , Date , Comments .
Is there any good code (paid or open source) out there for:Handling PPC ads on our site? This would (hopefully) include pages to create ads, reports of ads run, determining what ad to show, and tracking billing.Adding comments to our site? This would (hopefully) include up/down/inappropiate votes on other's comments.A product catalog? This would (hopefully) include advanced search and entering product items.
View 1 RepliesI tend to use a lot of commenting in my code. All these comments slow down the page rendering.
What I'm looking for is a script of some sort that goes through all aspx and cs pages in my web project and removes the commenting.
Note
In aspx pages I use commenting like this:
<%--
and
<!--
in cs pages I use
//
sometimes this
/*
Hope to get some easy and nice tips/scripts.
Sometimes someone may go to a website and after viewing the site want to make a comment about something on the site.
I tried to use the AsyncFileUpload control but that is best suited for uploading files.
Now I created a textbox for users to enter comments but the question is:
If I put a submit button on the form how do I recieve the users comment after the user enters their comment and clicks the Submit button?
I have a following requirement:
1. Create a blog with content and images.
2. Category for blogs
3. Comments on each blog
4. Monthly Archives, Recent Blogs and Recent comments.
I am trying to display message box after successfully insertion of comments into database. And before redirecting to another page.
But My application, in every time when button is clicked, displays message box even "textarea" box is empty.
[code]....
i have used this command in my gridview to display all the comments since last 2 days:
"SELECT BlogComment.CommentText FROM BlogComment INNER JOIN BlogPost ON BlogComment.BlogPostID = BlogPost.BlogPostID WHERE (BlogComment.CreatedOn >= DATEADD(dd, - 2, GETDATE()))"