How To Implement A Sort Of Feedback Form / Survey

Mar 13, 2010

i 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 Replies


Similar Messages:

Web Forms :: Link The Feedback Form With Captcha?

Mar 26, 2010

i had created a aspx page..Feedback and i had created the captcha coding... both i created in different folder...i wanna link the Feedback form with the captcha... -wen i want send the feedback, i have to write the captcha...after tat only can send.. how to link the form n captcha??

View 4 Replies

How To Generate Feedback Form In Html (aspx) With The Code

Apr 20, 2010

i need to generate feedback form in html (aspx) with the aspx.cs code?

View 2 Replies

Javascript - Prepopulate Few Fields In A Form In A Survey?

Feb 9, 2011

I have a share point survey. When we responding to the survey, as we know, it will open NewForm.aspx. this page contains a ListFormWebpart in which questions from survey list will be displayed. Now, i need to add few labels before the questions and these label values should be prepopulated from query string. What i am trying to achieve from this is, i wll created a link with some values in query string and send to specific users. different users might have different values in query string. Whenever they click on the link, it should open the survey with prepopulated label values along with questions in list.

I am not sure, how to do it. I have tried to add some html control to web part(using share point designer) and through JavaScript i have tried to set query string values. Then i tried to put asp controls and trued. it didn't work. I am trying since last 2 days. No progress. I am using SharePoint 2003, WSS2.0

View 2 Replies

Web Form Survey - Showing New Page (VB 2012)

Mar 18, 2013

I have VSExpress 2012 and am creating a WebForm survey app.

I have two pages - the start page (StimEntry.aspx) and the survey page (SurveyPage.aspx)

I have a "Begin Survey" button on the StimEntry page, but am not sure how to switch the user to the survey page when they click that button. Desktop app tutorials use PAGE.show, but that doesn't work here, and I'm assuming that's because I am working in a web form, but am not sure about that.

View 2 Replies

Web Forms :: Build Survey System Where Build A Form With Questions And Some Answers?

May 25, 2010

I want to build a survey system where you can build a form with questions and some answers to these questions and then members who will log in will be able to take the test.

Then i want to present the different results from the test in some diagram or something like that.

View 5 Replies

Implement Selection Sort In Vb.net Using Recursion?

Oct 20, 2010

I am trying to implement Selection Sort in vb.net using recursion. Problem is that I keep getting stackoverflow if the array I want to sort is 1000 elements. I can't find the problem. I don't know much about stack overflow or how to check it. From my research the problem could be infinite recursion but I check for that and exit the sub.Here is the main code:

Public Class SelectionSort
Inherits DefaultSort
Public Sub New(ByVal num As Integer)[code]....

Everything inside the constructor is set in the base class "DefaultSort", except for the Sort(). The array is set using properties:

Public Overridable Property Arr() As Integer()

Get
Return _array[code]....

Everything should work as far as I know. It works on an array of 10 elements and an array of 100 elements.

View 1 Replies

DataSource Controls :: How To Sort A Textbox1.text On Form

May 6, 2010

How can I cause my query Sort a textbox1.text on my form and I want to use this for my reportview1 laterlater each time i write something in my textbox1.text my reportview1 displays

Example I have:

ID Name Nationality
1 david American
2 Adam indian

if i write "1" only my report shows "david" info

View 2 Replies

Web Forms :: How To Insert A Feedback

Feb 1, 2011

i have this page called rateuser.aspx. User A logs in and can go to this page to rate&feedback any user. This is my code.

Protected Sub submit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles submit.Click
Dim connectionString As String = ConfigurationManager.ConnectionStrings("feedbackratingConnectionString").ConnectionString
Dim connection As SqlConnection = New SqlConnection(connectionString)
connection.Open()
Dim sql As String = "INSERT INTO feedbackuser(feedbacktitle,feedback,date) VALUES(@feedbacktitle,@feedback,@date);"
Dim command As SqlCommand = New SqlCommand(sql, connection)......

the first insert is to insert the feedback data into the feedback table. the 2nd insert is to insert rating data into the rating table. the 3rd insert is to take the feedbackuserID and the ratinguserID and insert it to the feedbackratinguser table (the "toMemberID" is taken from a dropdownlist and the "fromMemberID" is when i session the logged in user.) the "toMemberID" is controlled by dropdownlist where the value is in MemberID but data displayed is username. I am unable to insert the 3rd insert. The error line was "Dim reader3 As SqlDataReader = command.ExecuteReader()" and the error is "ExecuteReader requires an open and available Connection. The connection's current state is closed." how do i solve this error? the executereader is in a open connection already.

View 2 Replies

Forms Data Controls :: How To Change Sort Column Header Text And Retain The Sort Link

Jun 3, 2010

I have a simple dynamic gridview with following code -

GV = new GridView();

View 3 Replies

Security :: How To Implement Captcha For Registration Form

Feb 16, 2011

how can i implement captcha for registin form?

View 5 Replies

WCF / ASMX :: How To Implement Form Authentication Service

Nov 1, 2010

How to implement form authentication wcf service?

View 1 Replies

Code For Desing And Implement An Registration Form?

Nov 26, 2010

i need the code for desing and implement the registeration form

View 1 Replies

Web Forms :: Implement Form To Accept Comments

Nov 28, 2013

I want to accept user comments and store it in database.

View 1 Replies

MVC :: Feedback On The Most Optimal Toolsets For TDD, Mocking, And IOC?

May 25, 2010

I'll be starting a complete re-write of a system in the coming weeks. I'll be using ASP.NET MVC 2.I'm still trying to determine what I should be using as far as TDD, mocking, and IOC is concerned. I was thinking:

VSTEST for writing my TDD tests (or possibly nUnit) Moq as my mocking framework (for creating doubles and fakes) Moq for IOC development Not sure exactly what the ideal setup should be and I'm continuing to research what's available. I'd like some feedback from the community on the most optimal toolsets for TDD, mocking, and IOC.

View 10 Replies

Web Forms :: Insert A Feedback To A Particular User?

Feb 1, 2011

i am having serious trouble doing this rateuser.aspx. in this page, the logged in user(user A) can give a feedback to any user (user B). Similarly, another user (user C) can give a feedback to user B. when user A goes to user B's page, he should be able to see all feedback that was given to user B. i am having problem in doing the retrieving as i get duplicate data. To my knowledge, one user can receive many feedback.. and one user can give many feedback. my friend said it could because my "toMemberID" has the same ID (user B), thus it duplicated.

my sql code is this :

[code]....

View 1 Replies

How To Implement A Centralized Form Validation Framework For (C#) 3.5 Website

Aug 20, 2010

I 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.

View 1 Replies

How To Implement Custom 404 Page In .NET Web Form Application Using Routing

Jun 19, 2010

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

View 2 Replies

AJAX :: Implement A JQuery Login Form Into A Modal Box?

May 16, 2010

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 Replies

C# - Simple Feedback Upon Data Edit On Webform?

Sep 24, 2010

I'm using a GridView control, using the Northwind database as a sandbox.

I have allowed editing of rows using AutoGenerateEditButton="true" and that all works fine. The book I'm using for reference the following code behind for error handling (C#):

[code]...

However, this seems to have no effect upon my label text, leading me to believe that the exception handling snippet won't work either.

View 1 Replies

Teacher's Rating/ Feedback Application In Web Configuration?

Oct 14, 2010

I want to develope an Teacher's Rating/ Feedback/ Assesment (by students) application in .NET.There will be 20 different points on which a student will rate his/her teachesr as poor, fair, good, Very Good and Excellent.

View 4 Replies

User Controls :: How To Implement Email Inquiry Form In MasterPage

May 7, 2015

How can implement a Email Inquiry Form in MasterPage using Asp.net ...

View 1 Replies

Web Forms :: DataView.Sort Vs List.sort?

Mar 7, 2010

Actually i want to ask which is the best for sorting in Asp.Net is it DataView.Sort Method or List<Object>.Sort() method.

View 1 Replies

Web Forms :: Sort Datatable Without DefaultView.Sort?

Apr 20, 2010

I'm looking for a way to sort the rows of a datatable without setting the DefaultView.Sort to a specific column. I have a datatable in session that users can add records to. I want them to be able to sort the data by clicking on a button. But new records added after that need to show up at the bottom of the list until the sort button is clicked again.

View 2 Replies

Web Forms :: Give Progress Feedback On Web Parts Loading?

Mar 18, 2010

How could I user some feedback, using AJAX or progress bar, of the loading of web parts on the initial page load ?

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved