Web Forms :: Show A Quiz From Database?
Dec 2, 2010I want to show quiz on my website, then collect user answer and match it with the correct answer and finaly the result should be calculate and shown to the user.
View 2 RepliesI want to show quiz on my website, then collect user answer and match it with the correct answer and finaly the result should be calculate and shown to the user.
View 2 RepliesI have created an application in asp.net using c#.In that i have a Quiz Module.Quiz is working fine but now clients wants a Timer in this Module.How do i add a Timer for two minutes for whole quiz which will be showing like this- > 02:00 to 00:00 ?
View 8 Repliesi am making a quiz system in asp.net using C# vs 2008.having one equestion per page,with previous and back button.each question have four options with only one correct answer.The options are in a radio button list.I have a database which has two columns as QuestionID,CorrectAnswer.
For viewing previous answer the user can click on previous button,so that he can see his previous marked answer and if feel he had marked the wrong option then he can mark the other one.
Some Problems:-
when clicking the previous button the option which was marked in radio button list got unchecked!!So,the user is unable to know which he had marked before.After completing the quiz how can the answers selected by the user be compared with the CorrectAnswer stored in database and can be displayed in the result page having four columns as QuestionID,CorrectAnswer,UserAnswer,Right/Wrong in a grid view.Though i am able to display the QuestionID and the CorrectAnswer in a grid view in the result page.
How to start Quiz application in advance level objective only.
having following functions
Multiple Choices Answers
Subject wise
Location Wise
Score based
Different level[easir to difficult]
Specify No of Answer etc
I am making a online exam project i want to count the correct answers the questions and option are in datalist. Iam looping inside datalist but i want to know how to count the correct answers and display result...
View 1 RepliesI need to implement simple quiz in asp.net that displays question, its options and user can answer these questions by checking options and submit the result.
I think ListView is the best control to implement in a way that each Item is question and I need to display Option of the question using check box list.
In ItemTemplate, how can I specify such condition that give me the list of options to select for the user for the particular question in the same row. Just like this:
1. Question Text goes here: (Options to select for the user)checkbox1 goes here; checkbox2 goes here
2. Question Text goes here: (Options to select for the user)checkbox1 goes here; checkbox2 goes here and so on
i have a column named POINT.. it is the point in every question... therefore i want to get the total of this column..
View 3 RepliesI have a database and i what to pull different columns from a row without having to but it in a datagrid. I know this is 1st grade stuff. :)
View 5 RepliesI want to conduct a quiz using silverlight. This quiz contains few questions and each question will have multiple choices (Radio Buttons). User should select one answer. After completing the quiz I need to display Result.
Is it better to provide the questions and options in XML Document and then retrieve it into silverlight class?
Is there an existing application for drag and drop quiz interface in asp.net. I mean, users should be able to drag and drop the answers/options into a answer section and then the answer is verrified via our code.
Was just checking out if there is already an existing interface as described above.
i am making a quiz system in asp.net using C# vs 2008.having one equestion per page,with previous and back button.each question have four options with only one correct answer.The options are in a radio button list.I have a database which has two columns as QuestionID,CorrectAnswer.
For viewing previous answer the user can click on previous button,so that he can see his previous marked answer and if feel he had marked the wrong option then he can mark the other one.
Some Problems:-when clicking the previous button the option which was marked in radio button list got unchecked!!So,the user is unable to know which he/she had marked before.I want that the option remains checked so that the user knows what he/she had marked previously.After completing the quiz how can the answers selected by the user be compared with the CorrectAnswer stored in database and can be displayed in the result page having four columns as QuestionID,CorrectAnswer,UserAnswer,Right/Wrong in a grid view. Though i am able to display the QuestionID and the CorrectAnswer in a grid view in the result page.
I have a query that is displaying all records from the table:
Say:
select * from table1
Now, how my dataset has all 10 rows from the table. I want to display each row records one by one on button Next Button Click.
E.g. is display 1st question and 4 options, then on click of Next button show 2nd question and so on....
How to code for this requirement.
i have datagrid , data coming from database but data in database as formated , i want to show data wihotu format
below example:
<B> test </B> data base has this type data
but in grid i want to show test not with format,
i am getting same data from database.
I have a aspxtextbox and its validated from database.If text exists in database then it shows message Username exist.Now this is all happens on click of a aspxbutton after typing some text into aspxtextbox.I just want that when user defocus the textbox then it will automatically check from database and shows the message if exists.
View 1 RepliesI want to display a image that are storde in ms sql database, but I can get it work.
Default.aspx
[Code]....
Handler.ashx
[Code]....
I´m pretty sure that my select statement are right.
i have created tree view using asp.net web forms...it will simply show the data in database in the tree view. i hav kept label which should show the specific id of each parent and child when clicked for all parent nodes id is displayed as 0 and for all child nodes id is displayed as 1, it should come like this for eg,when the 1st parent is clicked it should display 1 and then it's when 1st child is licked label id should be 1a, 2nd as 1b and 3rd as 1c and so on... wat function should i use to display in the above way
View 2 RepliesI got a source code which uses <asp:login> tag
I found the code is using <membership> tag on webconfig to show the database.
How the 'table' from which the data is retrieved is to be given???
I have 4 textboxes. On which I want to show values from a database table which are readonly. After a button click event I have to show the updated values again.Two difficulties I have faced 1st to get four fields of data from DB than show those four data in specific texboxes.another is after doing some calculation showing updated data after a button click event.
View 7 Repliesi want show menu as :
PCLaptop
MacIBMAsusAcer
Printer
HPCanon
So , how to create table in database ?
I am developing article pages, i provide admin page for article page. i will let user write the article and save in database.
when i upload from database and show on the web page, i want to show paragraph by paragraph which user created as in admin.
I want to bring values from Database and show in Calendar. Similar to Event Calendar.
It's like Just a normal calendar but with custom data should display on each day cell from Database with dropdownmenu of months and year.
I apologize if this is the wrong sub-forum for this question, if it is please let me know a better sub-forum to ask this.Anyway, I have a table in my database with a photo column that points to the location of images all under the same root, like this: Y:playerPhotosplayerName.jpg
When I select a specific photo using a stored procedure in my aspx.cs, then read the image path using a sqldatareader like this
while (sdr.Read())
{
string filepath = sdr.GetString(0);[code]....
it works fine and the image shows in Internet Explorer (version 8), but doesn't show in Firefox (version 3.6.4) I think it has to do with the direction of the slash, but I'm not sure. Is there anyone out there that has run into this broswer problem?Basically is there a solution to changing the value of the image's filepath string if the browser is Firefox?
I am trying to show a modalpopup window after I do an insert to a database. What they want is a screen to popup with all the problems they just submitted to the db. the modalpopupexender keeps asking me for a targetcontrolId but I don't need one. How do I get around this. since the submit button they use to see modalpopup is part of a different panel.
[Code]....
how to show only date in a text box when retreive from database
database is returning default time also ..
i want to show report in graphical formate of data which is stored in sql server.
View 1 Replies