0
votes
3answers
2k views
Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not working
Hi,
I am so used to attach a process when debugging ASP.NET application in .NET 2.0 and VS.NET 2005. I don't know what happened to this functionality in VS.NET 2008.
I also don't wa …
0
votes
2answers
164 views
How to get operating IP Address of the WEB instance on IIS7
Hi,
I have Vista x64 IIS7 running on my dev. machine.
I used to use Request.ServerVariables.Get("LOCAL_ADDR") to get the operating instance IP address of the websit …
0
votes
3answers
274 views
How to overwrite Response.Redirect to prevent port coming with it
Hi,
I have a scenario that my load balancer translates port 80 from outside into port 801 which is local. And When it comes to server, server obviously sees port 801 and in Response.Redirec …
0
votes
Problems with ASP.Net State Service
In my experience we've found out that native state server or even using SQL Server for sessions is a very scary scenario as both have issues.
I think you can explore other products for this …
1
vote
Allowing Session in a Web Farm? Is StateServer Good Enough?
In my experience we've found out that native state server or even using SQL Server for sessions is a very scary scenario as both have issues (mainly performance). By the way, we are also using stic …
0
votes
Implementing observer pattern using WCF
The absolute best way to archive in your scenario and technology would be having some kind of token between your web app / library against your web service and your controller needs to have a threa …
0
votes
Monitoring load on ASP.NET Application
We are using an expensive solution which is AVICode but it is great. You can monitor so many thing with that.
…
-1
votes
Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not working
Help came from Mitchel Sellers.
He pointed out that the debug mode was ok however while attaching to the process, the "Attach To" was "Automatic:Native Code".
After changing to only "Manage …
0
votes
How to get operating IP Address of the WEB instance on IIS7
By coincidence I find out the solution.
It is hidden in the hosts file.
It was written in the hosts file as
127.0.0.1 localhost
::1 localhost
…
1
vote
How to overwrite Response.Redirect to prevent port coming with it
Ok,
I got the answer myself. I hope this solution will be useful for others too.
Well, the answer is within the web.config.
Under
<system.web>
<httpRuntime …
