If I'm developing an application that must accommodate
multiple security levels though secure login and my ASP.NET
web application is spanned across three web-servers (using
round-robin load balancing) what would be the best approach
to maintain login-in state for the users?
What is the maximum amount of memory any single process on
Windows can address? Is this different than the maximum
virtual memory for the system? How would this affect a
system design?
54
How to communicate via Remote proxy with Client?
a)MarshalByRef
b)Marshal by Value or Any thing else?
if i wanna deploy my asp.net project to the production
server and situation is that i m still not compiled my
project i have as-is on my development side now on
production server we dont have a visual studio now what
kind of settings i need to be to do in
webconfig /machine.config file to deploy my project and in
iis too....
can we remote debug applications with the remote debugger
installed with vs.net 2002, with vs.net 2003?
51
Write a standard lock() plus double check to create a
critical section around a variable access?
89
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.