Hi, I am developing an application (quiz engine) using C#
in Dot net.
My problem is I am designing the selction option using
radio button.
So, I want to retrive the data from the database to the
radiobutton option.
And also please tell me the how to compare the correct
answer option with
Answer selected by the users. If any body knows or have
done this before please
Help me out. My mail id is get_rome@yahoo.co.in.
Table format:
Question Id Queston Option1 Option 2 Option 3
Option 4 Correct answer
1 What is ur name? My name is ….. My name ….
My name …. My name …. My name is tom
i have one gridview contains edititemtemplate(which
contains update and cancel buttons) and i have one item
template (contains edit button)
i want the code for update and cancelbuttons in edit item
template and i want the code for edit button in
itemtemplate. please help me
Below is a code extract from an ASP.Net application.
The code basically reads data from the “name” field in
the “members” table and prints them onto the webpage.
Using the assumptions provided, fill in the 4 blanks below
so that the code will run correctly.
‘Assumptions:
‘conn_str is a variable that holds the connection string to
the database
‘Objects dbcomm and dbread are already declared earlier
dbcomm = New OleDbCommand("SELECT name FROM members",
conn_str)
dbread = dbcomm._______________
_____________________
response.write(_______________)
_____________________
dbread.Close()
Where would you use an IHttpModule, and what are the
limitations of anyapproach you might take in implementing one?
91
what is command line compiler.what are the steps and how it
is related to debugging.
33
i develop a web application and i gave security setting i.e
autherization and athentication now it work properly on my
local system ,
now question is ,is this security setting ie
autherization and athentication which i gave in web.config
will it be enough strong to secure my application on
internet or i have to use some 3rd party tool or software
to get security .if yes --how ? if no--what is the
alternate?
35
What are the objects in used in ASP for processing input and
outputs?
67
how to implement some securty aspect in our application i.e
1.cookie poisioning.
2.data encryption.
3.forcefull browsing
4.sql/code injection
5.securing web app by using web services
........my question is how to implement these thing in our
application
is this done by hard coding or by help of some tool
36
How to use DevExpress controls
25
If you are using components in your application, how can you
handle exceptions raised in a component?
When we are requesting a new URL through Response.Redirect()
the new page wil open on the new browser window or it wil
open in the same window? If we use Server.Transfer() what
wil happen?
a web application needs to be created to accept the product
name and quantity of a toy from a customer. After the
customer has entered the product name the application needs
to display the discounted price of the product to the
customer (company is offering 35% discount on all products).
The application should allow the customer to select the
product name from a list box. and also while i'm data
binding to a label with custom data binding with some
declarations : "The Discounted Price is
"+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text))
-
((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)).
Where i need to give this declaration in asp.net 2.0.