Why is the standalone environment only useful during the
development process?
4
What are three ways that you can use a compare validator?
8
How to use DevExpress controls
188
what is command line compiler.what are the steps and how it
is related to debugging.
87
ASP.NET 2.0's new membership API used for creating and
managing user account is exposed through which 2 clause?
26
You need to be able to retrieve data from DataSet object
that has four DataTable objects. There are currently
UniqueConstraint and ForeignKeyConstraint Object on the
DataTable objects to enforce the data rules. You find that
you can retrieve the data from the individual DataTable
objects, but you are not able to retrieve the data from the
combination of DataTable objects in a Parent/Child manner.
What should you do to able to retrieve the data in a
Parent/Child manner?
a) Set the EnforceParentChild parameter of the DataSet to True.
b) Set the EnforceRelation parameter of the Relations
collection to True.
c) Add DataRelation objects to the Relations Collection to
make the DataSet present the data in Parent/Child manner.
d) Add a primary key and a foreign key to each of the
DataTable objects that should present the data in a
Parent/Child manner.
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.
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
108
what cut off mark for po's,what questions they asked for
interview?
126
calling result set one procedure to anothar procedure in sql2000
How can we update records in gridview?Is there any
appropriate code for it?
153
Can the action attribute of a server-side
tag be set to a value and if not how can you possibly pass
data from a form page to a subsequent page?
159
I have a component with 3 parameter and deployed to client
side now i changed my dll method which takes 4 parameter.How
can i deploy this without affecting the clent?s code ?