| Back to Questions Page |
| |
| Question |
How will u decide when to use caching and when to use
viewstate? |
Rank |
Answer Posted By |
|
Question Submitted By :: Sani |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | When it comes to choosing between ViewState and Caching it
all comes down to what you are doing. ViewState is an ideal
candidate if you are planning to save small values. Mostly
values of server controls are saved in ViewState. If you
plan to store large datasets, datatables or collections than
data caching is an excellent candidate.  |
| Richa |
| |
| |
| Answer | If you want to store large datasets and datatables than
data caching is an good option and for small values you
should use viewstate.  |
| Ajai |
| |
| |
| Question |
hello friends,
I have created a animated button in VB.NET. As its dll file
coding can be viewed and also copied to some other location.
So my question is how can I protect the Dll file of the
animated button so that noone can access it. Any idea about
this????????
Thanks
Rekha |
Rank |
Answer Posted By |
|
Question Submitted By :: Rekha47 |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | As a part of Visual Studio Tool there is a tool named
Dotfuscator, using which we can remake the dll such that the
internal code is not visible.  |
| Bong |
| |
| |
|
|
| |
| Question |
How you will handle session when deploying application in
more than a server? Describe session handling in a webform,
how does it work and what are the limits? |
Rank |
Answer Posted By |
|
Question Submitted By :: Rashmi |
| This Interview Question Asked @ Microsoft , Sdfs |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | we have Inproc server and outproc server
for storing session in different server we have to specify
in the webcofing mode="state" and state mode session to be
srialized. and it stores in aspnet_state.exe  |
| Frederickson |
| |
| |
| Answer | If we specify mode ="Inproc" session will store in
webserver itself under aspnet_wp.exe
If we specify mode = "Sqlserver" session will store in
sqlserver and it has to be serialized.  |
| Frederickson |
| |
| |
| Question |
can i inherit one web applications into another web
applications in asp.net? |
Rank |
Answer Posted By |
|
Question Submitted By :: Krishna.annamaraj |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | No,  |
| Yogita |
| |
| |
| Answer | yes you can  |
| Amisha |
| |
| |
| Question |
From the given paragraph of text, write a program to match
the strings of format “Any number of numerals followed by
an underscore followed by any number of alphabets"
ex:123_abc
(Note:using regular expressions) |
Rank |
Answer Posted By |
|
Question Submitted By :: Brijit.khanna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | private void RegExp(string input)
{
string s = input;
Regex regexp = new Regex("^[0-9]*_[A-Za-z]*$");
if(regexp.IsMatch(input))
Console.WriteLine("Matched");
else
Console.WriteLine("Not Match");
}  |
| Kp |
| |
| |
| Question |
sir how i can calculate the value of two-textbox of
gridview and show result in textbox within gridview in
asp.net with vb.net..plz sir reply me |
Rank |
Answer Posted By |
|
Question Submitted By :: Satishrajpoot1984 |
| This Interview Question Asked @ Biz-Technology |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | val(textbox1.text)+val(textbox2.text)=txtbox3.text  |
| Guest |
| |
| |
| Question |
What are the valid parameter types we can pass in an
Indexer ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Raju Ranjan Sinha |
| This Interview Question Asked @ CMC |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | IN,OUT,INOUT are the valid parameter types that we can pass
in a Indexer  |
| Dileep |
| |
| |
| Question |
How to call the SQL commands asynchronously in ADO.NET
version 2.0 |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ DELL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | here
executescalar()
executereader()
executenonquery()
these comes with Begin and End
like Beginexecutescalr()
Endexecutescalar()
.......
by using these command we can achieve asynch comm in
ado.net  |
| Jagan |
| |
| |
|
| |
|
Back to Questions Page |