| Back to Questions Page |
| |
| Question |
is it possible to set more than web.config file for an
ASP.net APPLICATION?can it run?how is it possible |
Rank |
Answer Posted By |
|
Question Submitted By :: Elumalai.k |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Yes we can have as many as Web.Config Files we want. When
we have multiple Web.config files the CLR will Search for
the Config file which is just below the calling code.  |
| Lokesh Gopinath |
| |
| |
| Question |
is it possible to use web site without web server from
remote place? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ ABC |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Yes, It is Possible. As Website is Deployed In Web server
in IIS. There is no need to have Web server in Remote Place.  |
| Rajesh Kumar |
| |
| |
| Question |
SqlCommand cmd = new SqlCommand();
using (cmd) {...}
Referring to the above, what method is implicitly called at
the end of the "using" statement?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Rajesh |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Object.Dispose()  |
| Aspdev556 |
| |
| |
|
|
| |
| Question |
Where CANNOT Destructors be implemented ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Rajesh |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In Structure we cant give the Destructor Method.  |
| Siva |
| |
| |
| Question |
int i = 1;
int j = 1;
System.Console.WriteLine(i == j);
System.Console.WriteLine(i.ToString() == j.ToString());
System.Console.WriteLine((object)i == (object)j);
Give the sample code above, what is the output to the console?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Rajesh |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | true
true
false  |
| Aspdev556 |
| |
| |
|
| |
|
Back to Questions Page |