|
Remote Debugging
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
How? Is there a tutorial?
regards,
George
|
|
|
|
|
Google, use the keyword I gave you.
If I have to give you a tutorial on how to use Google, I can only hope that you stop programming, and while your at it, stop using the computer.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
Hi Expert,
All I found is how to debug a remote application (by attaching to its process), but for ASP.Net application, which process should I attach to?
regards,
George
|
|
|
|
|
George_George wrote: which process should I attach to?
aspnet_wp.exe
cheers,
Abhijit
|
|
|
|
|
Cool, thanks Abhijit!
regards,
George
|
|
|
|
|
Tools - > Attach Process.
Open Websites on VS , Attach the Browser Application which is currently runs your application. Then Debug.
cheers,
Abhijit
|
|
|
|
|
Hi Abhijit,
1.
I am confused. "Tools - > Attach Process" do you mean Visual Studio Tools - > Attach Process? If yes, there is no Attach Process entry under Tools menu, only under Debug menu.
2.
"Open Websites on VS , Attach the Browser Application which is currently runs your application. Then Debug." -- I have followed your comments to open web site from Visual Studio, but what do you mean "Attach the Browser Application which is currently runs your application"? Any comments?
regards,
George
|
|
|
|
|
George_George wrote:
I am confused. "Tools - > Attach Process" do you mean Visual Studio Tools - > Attach Process? If yes, there is no Attach Process entry under Tools menu, only under Debug menu.
Yes I am talking About Visual Studio "Tool "
Tool - > Attach To Process
If you are not able to find it , just Press (Ctrl + Alt + P )
George_George wrote: "Open Websites on VS , Attach the Browser Application which is currently runs your application. Then Debug." -- I have followed your comments to open web site from Visual Studio, but what do you mean "Attach the Browser Application which is currently runs your application"? Any comments?
First Run your web application on browser, which is hosted on IIS. check "Proceess From Task Manager" . There would a Browser process running . You need to attached this process with you code.
Then in VS , give break point where you needs, then open Attach process screen as I already suggested in point 1 .
Now debug
Let me know if any issue !!!
cheers,
Abhijit
|
|
|
|
|
Hi Abhijit,
I am confused about your debugging solution. I want to debug server side code, i.e. the ASP.Net code runs on server, not the client side code running on IE. Why should I attach to IE? I think I should attach to IIS or ASP.Net worker process? Any comments?
regards,
George
|
|
|
|
|
George_George wrote: I think I should attach to IIS or ASP.Net worker process? Any comments?
ohh...That was my mistake , you need to also add Worker Process also .
cheers,
Abhijit
|
|
|
|
|
Hi Abhijit,
1.
A debugger could only attach to one process, I want to confirm with you that you mean attaching to ASP Worker Process process? Or something else?
2.
What is the name of ASP.Net worker process?
regards,
George
|
|
|
|
|
|
Good reference, I followed and they works cool. Thanks, Abhijit!
regards,
George
|
|
|
|
|
George_George wrote: My question is, how to debug on IIS? E.g. I send some request and could debug line by line in cs file to see the processing details?
You are trying to step into code from your machine connecting to server right? AFAIK, this is not possible. Easy way is to remote desktop to that server, and debug the code there if you have VS installed there.
|
|
|
|
|
|
Kindly tell me what is COM based development ?
where it is used ?
i don't have concept of COM
Thanx in Advance
Sajjad
|
|
|
|
|
I guarentee you that it has NOTHING to do with ASP.NET.
We have a COM forum. Not many people there because COM is about 3 technologies ago.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
hello,
if i select an item from dropdown list the related information should be displaced in another dropdown list (using ajax)
Eg: if i select india from one dropdown list the related state's should be represented in another dropdown list.
help me..
Thanx in advance...
|
|
|
|
|
Just put both the dropdownlist inside different Updatepanel. ( Say Ddl1 is in inside UpdatePanel1 and ddl2 is inside update panel2 )
Now Change the UpdateMode of UpdatePanel2 to “Conditional” . And Update the UpdatePanel2 on the selectionIndex Changed of Ddl1 as UpdatePanel2.Update()
Hope Rest part you will do yourself !!!
cheers,
Abhijit
|
|
|
|
|
Implementing this code with Classical Ajax using Javascript is more fun 
|
|
|
|
|
Damn - proper AJAX is 'classical' now ?
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Christian Graus wrote: Damn - proper AJAX is 'classical' now ?
It's like classical ASP and ASP.NET. Honestly, many people think "ASP.NET AJAX" is the real AJAX
|
|
|
|
|
Yes, I'd say most of the people asking questions here, believe that.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
It will soon become classical ,if it's not yet
People are getting lazier expecting controls to do more and more for them .
|
|
|
|