| Back to Questions Page |
| |
| Question |
If I'm developing an application that must accomodate
multiple security levels though secure login and my ASP.NET
web appplication is spanned across three web-servers (using
round-robbin load balancing) what would be the best approach
to maintain login-in state for the users?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Database Support. or Thru state service.
 |
| Raghumadhav Tirunagari |
| |
| |
| Answer | The best way is to maintain log in state cookie.  |
| Virendra Sehrawat |
| |
| |
| Question |
Can you give an example of what might be best suited to
place in the Application_Start and Session_Start subroutines?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Application_start need for global variable which are
available over the application.
Sesssion_Start : login dependent ( user dependent)
 |
| Raghumadhav Tirunagari |
| |
| |
|
|
| |
| Question |
Can you explain the difference between an ADO.NET Dataset
and ADO Recordset?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
DIsconnected architechure . Maintainace relation schemas.
MUtilple table grouping.
Connected one .
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
Let's say I have an existing application written using
Visual Studio 6 (VB 6, InterDev 6) and this application
utilizes Windows 2000 COM+ transaction services. How would
you approach migrating this application to .NET ?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
We need to have Wrapper to communicate COM components in
.net. and vis versa
CCW : Com Callable wrapper.
RCW : RUN time callable wrapper.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
Can you give an example of when it would be appropriate to
use a web service as opposed to a non-serviced .NET component
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Web services are best suite for Hetrogenious environment.
Remoting is best suite for Homogenious environment. The
systems that under CLR.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | server.Trnasfer will prevent round trip. it will redirect
pages which or in the same directory. NO way to pass the
query strings . Thru http context we can able to get the
previous page control values.
Response.Redirect : There is a round trip to process the
request. We can redirect to any page external / internal
other than aspx. We can pass the query string thru which we
can manage sessions.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
What does the "EnableViewState" property do? Why would I
want it on or off?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
IT keeps the data of the control during post backs.
if we turn off the values should not populate during server
round trip.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
3. Should validation (did the user enter a real date) occur
server-side or client-side? Why?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
client side . there is no need to go to validate user input.
If it relates to data base validation we need to validate at
server side.
 |
| Raghumadhav Tirunagari |
| |
| |
| Answer | Validation should strictly occur in client side...
because the user's input format should be verified then and
there, for this server side validation is of no use,
whereas to validate the userid and the password server side
validation is the only option.
Joshua_________
www.prodigyapex.com  |
| Joshuab |
| |
| |
| Answer | Validation should strictly occur in client side...
because the user's input format should be verified then and
there, for this server side validation is of no use,
whereas to validate the userid and the password server side
validation is the only option.
Joshua_________
www.prodigyapex.com  |
| Joshuab |
| |
| |
| Question |
2. What type of code (server or client) is found in a
Code-Behind class?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Server side.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
Explain the differences between Server-side and Client-side
code?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Server side code will execute at server end all the business
logic will execute at server end where as client side code
will execute at client side at browser end.
 |
| Raghumadhav Tirunagari |
| |
| |
| Question |
How can i create only one instance of class and thus doesn't
allow creating any more instances?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Raghumadhav Tirunagari |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | If a system only needs one instance of a class, and that
instance needs to be accessible in many different parts of
a system, you control both instantiation and access by
making that class a singleton.  |
| Prayag Thakkar |
| |
| |
|
| |
|
Back to Questions Page |