VS 2010 - How To Create A Dynamic Questionnaire

Dec 1, 2011

i have a Dynamic Questionnaire that is created using dynamic data from the Database. My data in the Database contains the fields like

QuestionID - Primary key
Question - The Question Text
Answer - The Answer
Required - This is a Validation , i used this to enable the Required validator in asp.net
DataType - This is the Datatype, it can be a Heading also.
ReadOnly - This check if that Question is a Read-only , This happens most of the time , when it is a Calculated Field, meaning its values depends on other fields values.
Order - This is the order the Questions will appear
Section - This is the section, So the Questions are Grouped. Normally in Page1 you will have Questions for Section 1.......
Deleted- This is a bit Field , its either 1 or 0 , 1 is active, so this will be to Filter only active Questions
QuestionType- This is the Type of Control the Data should be Presented with, It can be a Dropdown ,checkbox or textbox..
QT_ID - There can be many Templates of the Question , this makes sure we use the Correct Template for the Questionnaire

So with this kind of Data , i want to use know , what asp.net Control can i use to achieve this.

View 9 Replies


Similar Messages:

Control For Questionnaire?

Mar 14, 2011

I would like to design Questionnaire around 30 questions. What control should use? If simply using label & text box will have a lot of control within one form?

View 4 Replies

Data Controls :: How To Create Dynamic Buttons On Click Of Dynamic Button

Jul 24, 2013

im creating dynamic buttons on page load and on the click event of button1 handlere iam creating more buttons this is going fine but on click event of button 2 work is not done so how to maintain a chain of creation of button on click events

protected void Button2_Click(object sender, EventArgs e)//

{
ClientScript.RegisterClientScriptBlock(this.GetType(), ((Button)sender).ID, "<script>alert('Button_Click');</script>");
Response.Write(DateTime.Now.ToString() + ": " + ((Button)sender).ID + " was clicked");
}

protected void Button_Click(object sender, EventArgs e)//this button click will call all the items related to department

[code]....

View 1 Replies

Create Dynamic Button With Dynamic Text?

Jan 7, 2011

I have a project where I need to create menu buttons from a list in SQL Server. The problem I am having is that I need to add code to the text of those buttons. So there would be a birthday button and it should display the number of birthdays within the next two weeks or a button with the number of upcoming events.

Clarification:

There is no code yet, just some requirements. What I am doing is querying a table to get the list of buttons to display. Now each of these buttons may have dynamic text, for things like count of birthdays, events,etc... I am trying to see what the best way would be to handle this. Should I embed a snippet of code to go along with the menu item to execute when I iterate over the menu items? Maybe I should build a javascript file to go along with the code, which I add code to query a service for certain menu items?

View 4 Replies

Web Forms :: Using Web Parts For User Defined Questionnaire Generator?

Mar 27, 2010

need to let users to generate online questionnaires that could be answered by other users. I was wondering if this could be done using the WebParts.I have a custom application with already set up database. I do not use any form of Membership Provider (I have a custom made form of user authentication, I did not want to be bounded by the rigid frame of the ASP Membership). As far as I know Web Parts uses db (called SharePoint ?) to store the state etc. so this might be the first problem because I do not want to modify my DB just for the sake of WebParts (I assume it would require a whole lot of changes).So I was wondering if it would be possible to use Web Parts only as a form of "ASP code generator" e.g. I could create the questionnarie using WebParts and then export the result somehow (?) to print an ascx/aspx file or code.If this can not be done, can anybody tell me if there are any components that would be useful here? Some sort of toolkit where one could create asp code online? (with textboxes, checkboxes etc.).

View 2 Replies

Web Forms :: Building Questionnaire Application With One Question And Four Options

Feb 4, 2013

i have a task, online test. 15 questions stored in database , and also answers.

it has 4 options, a, b, c, d. for a particular question how to fil values in respective options from database.?

and also how to move to next questions, by clicking next button

View 1 Replies

Web Forms :: Set Two Minutes Timer In Online Questionnaire Test Application?

Feb 6, 2013

how to set time for particular questions.

eg: 2 min.

if the user not click the answer for particular question, it should automatically went to next question. (online exam text).

View 1 Replies

VS 2010 Dynamic UserControl - Postback Event Not Firing

Feb 8, 2012

I have a page where I add a dynamic user control in the Page_Load event based on criteria.

The control is a simple form with a save button. The problem is the _Click event never fires for the button. It will postback the main page the control is within, but not the code behind for the control...so I never get the button click even, and therefor can't execute the save code.

Tried it in the init, tried adding the control to a placeholder, tried a lot of various things but nothing seems to work.

Code:
If cb_business_profile.Items.Count = 0 Then
Dim u_pnl_content As UpdatePanel = Page.FindControl("u_pnl_content")
u_pnl_content.ContentTemplateContainer.Controls.Clear()

Dim business_profile_detail As Control = LoadControl("~/controls/business_profile_detail.ascx")

[Code] ....

View 3 Replies

VS 2010 - Dynamic List Of Delete Buttons / Event Handler

Oct 14, 2011

Creating a list of users with a "Delete" linkbutton next to each". Seems I got it all wrong (again..away from webforms a long time).

Here's what I do:

Building a list of users with delete buttons:

Code:
foreach (var user in users)
{
var usr = user as UserInfo;
var row = new TableRow();
var cell = new TableCell();

[Code] ....

The "Delete""event handler:

Code:
protected void btnRemoveModUser_Click(object sender, EventArgs e)
{
var button = sender as LinkButton;
var userController = new UserController();
var user = userController.GetUser(PortalId, int.Parse(button.CommandArgument));
RemoveUserFromRole(Enums.KnowledgebaseRole.KB_Moderators, user);
}

I got a hunch though it's because of the when/where I'm loading that list of users. I call the function (getting a list of all users, clearing the table and populate it again):

In the page load, if not a postback.
Every time the "Add user" function have been called (that works fine).
Every time the "Delete user" function are called.

The last will not delete the user (still in database) but reload the ^&* form without any users.

I just found that the delete handler does not get called at all, but the button post back the form, so my list of user's don't get loaded.

View 3 Replies

Determine The "correct" Number Of Steps In A Questionnaire Where Branching Is Used?

Jan 5, 2011

I've written a questionnaire application in ASP.Net that takes people through a series of pages. I've introduced conditional processing, or branching, so that some pages can be skipped dependent on an answer, e.g. if you're over a certain age, you will skip the page that has Teen Music Choice and go straight to the Golden Oldies page.

I wish to display how far along the questionnaire someone is (as a percentage). Let's say I have 10 pages to go through and my first answer takes me straight to page 9. Technically, I'm now 90% of the way through the questionnaire, but the user can think of themselves as being on page 2 of 3: the start page (with the branching question), page 9, then the end page (page 10).

How can I show that I'm on 66% and not 90% when I'm on page 9 of 10?

For further information, each Page can have a number of questions on that can have one or more conditions on them that will send the user to another page. By default, the next page will be the next one in the collection, but that can be over-ridden (e.g. entire sets of pages can be skipped).

View 2 Replies

Visual Studio 2010 - Dynamic Data TextSearch Custom Filter Template

Aug 31, 2010

I'm trying to implement a custom filter template for all text based searches and running into problems constructing the query. I've been following the instructions posted on this blog but not sure how change the GetQueryable method to perform a WHERE columnAttribute LIKE '%something%'query. In the example on the blog the expression is an equality which works if the text I enter exactly matches the text in the database column.

At the moment I'm using the new QueryExtender feature along with the SearchExpression control but this requires creating several custom pages for all the tables I need text search functionality for. I would like to DRY this up by creating the custom filter template.

View 2 Replies

Visual Studio :: Web Project Converted From 2005 To 2010 Gets Dynamic Compile Error On The @Page Directive?

Jan 12, 2011

As that title says my aspx page shows a compile error on the @Page directive that says "ASP.NET runtime error: Cannot load file or Assembly 'Microsoft.SqlServer.BatchParser' or one of it's dependencies". The project compiles with our error and it runs with no problem. The only real problem that this causes it that the intellisense for anything other than simple HTML is broken so I can't type asp:Controlname and have intellisense show me a the list of items or properties in a control. I get a green squiggly line under all the asp tags saying "Unrecognized tag prefix or device filter 'asp'". This project doesn't directly use SQL SMO but it does reference a project that does. However, I removed that reference and the problem still doesn't go away. I have installed on my development machine the full SQL client and for both SQL 2005 and 2008 (including the SDK) from the Developer editions of both versions. This was not a problem on VS2005 and the project compiles without error in VS2010 too.

View 1 Replies

Web Forms :: How To Create A Second Dynamic Ddl

Jan 15, 2011

I know how to create a dynamic ddl. but I can't keep it! It want to have 1 ddl and after selection create another one and with selection ofthe second, third is created and so on. I can create second ddl and addhandler. but when I change the second ddl it disappears!

View 3 Replies

Configuration :: To Create A Dynamic .net Web App

Mar 2, 2011

i am a beginner and i have done a tutorial to create a dynamic asp.net web app. I want to host it on my own laptop to the world wide web.

I have copied the content to my C:/inetpub.wwwroot and used IIS 7 to make an associated website. I can open the site in a browser by typing http:/localhost/mysite in the url field. Thing is I want to see it on the www. I have registered a domain name. I guess I have to map the domain name to the physical server on my machine. How do I do this? I am using a wifi router.

View 4 Replies

How To Create Dynamic URL's For Different Users

Jul 30, 2010

How to create dynamic URL's for different users..

for example there are many users registered to my website..

each one has their own profile page which has the link of the form..

http://example.com/Users.aspx?id=User1

And i need to dynamically rewrite these URL's as http://example.com/User1 etc..

View 3 Replies

AJAX :: How To Create Dynamic Tab

Dec 23, 2010

I want to create dynamic ajax tab and wrote below code for this. but my problem is: tab is created just for one time even though I want to create dynamic tabs each time menuitems are clicked.

here is my code:

[Code]....

View 3 Replies

C# - How To Create Object Dynamic

Mar 24, 2011

I'm creating a system where data is coming from a database. This data represents certain object that has to be created dynamically.

Now to let the object work into a build framework that I use. I need to set the object at the top of my class like this.

[code]....

To set the properties of the object dynamically isn't a problem. The problem that I experience is that I don't know how I can dynamically create the

public ColorPickerWidget com1 {get; protected set;}

View 2 Replies

Create Dynamic Views In Mvc 2.0?

Mar 17, 2010

How to create dynamic views in asp.net mvc 2.0?

View 1 Replies

C# - How To Create Dynamic Controls

Jan 18, 2011

My web page will get a set of results from the database and display it to the user. However I am not sure about "number" of results.Each result will have a panel which contains several controls in itself, an image, several labels, etc.What is the best way to do this dynamically, eg. create these controls dynamically?Is it better to use an AJAX control? Should I use Gridview?

View 3 Replies

Create Dynamic Marquee In C#.net?

Mar 22, 2011

How I can create dynamic marquee in c#.net? That means I want to display announcements in home page, direction from top to bottom in allotted space, only two announcenets at a time, it should come dynamically.

View 1 Replies

Create Dynamic Table In C#?

Feb 14, 2011

I have to show several values in the page. Values are come from different store procedure.

I would like to show the values on the Table format. The table rows are not fixed. How I can so that?

View 10 Replies

Web Forms :: Create Dynamic URL's?

Feb 10, 2010

i am creating a website and now i want to make this site search engine friendly thats why, i want to create dynamic 0r user friendly URL's for all site.

now my dynamic pages URL's are like this

www.abs.com/news_detail/news_id=58

and i want like this

www.abc.com/my_news_title_come_here

View 2 Replies

Web Forms :: How To Create Dynamic Controls

Jun 14, 2010

My problem would be the following:

Lets say, I have to create a few buttons runtime ( LinkButton b = new LinkButton(); setting an ID, text, Click +=, etc )

the problem is, whenever I create a button (or such thing) outside of the Form_load or PreInit, the OnClick event just doesn't occurs.

View 3 Replies

Web Forms :: How To Create A Dynamic Templates

Dec 23, 2010

My Requirement is to create a dynamic template in which i want to change

Some times images should be in middle , top, bottom

1)Image
2)Header Text
3)Address
4)Adding some content

View 2 Replies

How To Create Dynamic Hyperlink To GridView

Dec 6, 2010

i'm using VB ASP.NET. i'm trying to display some values in Gridview. but i don't know how many columns i need to display. at run time only i will come to know how many columns i need to display. it depends up on the values from Database. so i'm creating columns dynamically and adding to gridview. till that it works fine. but i want some columns value to be hyperlink. so i need to create some columns hyperlink dynamically.
for example : if i need to make any chnage for 12/1/2010 john, i can click hyperlink "Work" and update the information. and if i need to add some description for 12/2/2010 John, i can click hyperlink "Add New" and add description for that date.

[Code].....

How can i create dynamic hyperlinks for the date columns. if you have any idea, how to do this,

View 8 Replies







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