| Back to Questions Page |
| Question |
I have a method written in WebForm (means .aspx page) & now
I want to call this method in WebUserControl (means .ascx
page) what should I have to do?
|
Rank |
Answer Posted By |
|
Interview Question Submitted By :: 007neo |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Use the controls page property and typecast it to the page
class name.
eg:
Page Default.aspx has a control MyControl.ascx
Page Default.aspx.cs has a method MyMethod()
in MyControl.ascx.cs
((Default)(this.Page)).MyMethod();  |
0 | Jp |
| |
| |
| Question |
Can two different programming languages be mixed in a
single ASMX file? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
No.  |
0 | Swapna |
| |
| |
| Question |
Describe the role of inetinfo.exe, aspnet_isapi.dll
andaspnet_wp.exe in the page loading process? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
inetinfo.exe is the microsoft server runing , handling
ASP.NET request and other things.when the asp.net request
is recieved (usually the it gets .aspx extention) the ISAPI
filter aspnet_isapi.dll takes care of it by passing the
request to the actual worker process aspnet_wp.exe.  |
4 | Radha |
| |
| |
|
|
| |
|
| |
|
Back to Questions Page |