473,657 Members | 2,934 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Who is calling?

Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.
Jan 10 '06 #1
7 1466
Try REMOTE_HOST and see if that doesn't do it for you.

You also might want to look at the Request.Url property.

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Arne" wrote:
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.

Jan 10 '06 #2
There are several values within the Request.URL object that you can use. Try
Request.URL.Abs olutePath or Request.URL.Abs oluteURL or Request.URL.Loc alPath.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.

Jan 10 '06 #3
Request.Url is your friend. You'll find things like Request.Url.Aut hority
(which is what you want I think) and much more.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Arne" <Ar**@discussio ns.microsoft.co m> wrote in message
news:6C******** *************** ***********@mic rosoft.com...
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.

Jan 10 '06 #4
Phillip,
The request.URL is useful. When I run in a file-based Web project in Visual
Studio 2005 I get an extra folder name on the URL which is my project name.
This causes me problems. I wonder if switching to a web-base project would be
better.

Arne

"Phillip Williams" wrote:
There are several values within the Request.URL object that you can use. Try
Request.URL.Abs olutePath or Request.URL.Abs oluteURL or Request.URL.Loc alPath.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.

Jan 10 '06 #5
Karl,
The request.URL is useful. When I run in a file-based Web project in Visual
Studio 2005 I get an extra folder name on the URL which is my project name.
This causes me problems. I wonder if switching to a web-base project would be
better.

Arne
"Karl Seguin [MVP]" wrote:
Request.Url is your friend. You'll find things like Request.Url.Aut hority
(which is what you want I think) and much more.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Arne" <Ar**@discussio ns.microsoft.co m> wrote in message
news:6C******** *************** ***********@mic rosoft.com...
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.


Jan 10 '06 #6
Hi Arne,

Try something like this:
if (Reuqest.Url.Po rt >0) //this is the case when vs2005 debugs a
file-based project
{
//this should strip off the project name and gets you only the path and
page name
string myUrl =
Request.Url.Loc alPath.Replace( Request.Url.Seg ments[1],"");
}
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:
Phillip,
The request.URL is useful. When I run in a file-based Web project in Visual
Studio 2005 I get an extra folder name on the URL which is my project name.
This causes me problems. I wonder if switching to a web-base project would be
better.

Arne

"Phillip Williams" wrote:
There are several values within the Request.URL object that you can use. Try
Request.URL.Abs olutePath or Request.URL.Abs oluteURL or Request.URL.Loc alPath.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:
Is there an easy way to get the URL that is used in a debugging session in
Visual Studo 2005?
I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
the port used.
The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
whole URL.

Jan 10 '06 #7
Correction:

The condition for checking is Port !=80

if (Reuqest.Url.Po rt!=80) {}
"Phillip Williams" wrote:
Hi Arne,

Try something like this:
if (Reuqest.Url.Po rt >0) //this is the case when vs2005 debugs a
file-based project
{
//this should strip off the project name and gets you only the path and
page name
string myUrl =
Request.Url.Loc alPath.Replace( Request.Url.Seg ments[1],"");
}
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:
Phillip,
The request.URL is useful. When I run in a file-based Web project in Visual
Studio 2005 I get an extra folder name on the URL which is my project name.
This causes me problems. I wonder if switching to a web-base project would be
better.

Arne

"Phillip Williams" wrote:
There are several values within the Request.URL object that you can use. Try
Request.URL.Abs olutePath or Request.URL.Abs oluteURL or Request.URL.Loc alPath.
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Arne" wrote:

> Is there an easy way to get the URL that is used in a debugging session in
> Visual Studo 2005?
> I tried request.ServerV ariable("REMOTE _PORT") but it returns blank and not
> the port used.
> The request.ServerV ariable("SERVER _NAME") works OK, but I don't have the
> whole URL.

Jan 10 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2312
by: Asapi | last post by:
1. Are linkage convention and calling convention referring to the same thing? 2. Does calling convention differ between languages C and C++? 3. How does calling convention differ between static and non-static class member function? 4. Could it be possible to specify different calling convention for each "global" or each class member function? Even in a single file scope?
8
2953
by: Muthu | last post by:
I've read calling conventions to be the order(reverse or forward) in which the parameters are being read & understood by compilers. For ex. the following function. int Add(int p1, int p2, int p3); The parameters here can be read either in the forward order from p1 till p3 or reverse order from p3 till p1. Can anyone explain what is the advantage/disadvantage of either of
7
6600
by: Klaus Friese | last post by:
Hi, i'm currently working on a plugin for Adobe InDesign and i have some problems with that. I'm not really a c++ guru, maybe somebody here has an idea how to solve this. The plugin is written in C++ and it's calling a java application. This application displays a window and pushing a button is calling back the c++-plugin again.
5
3414
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS 5), but fails on IIS 6 running on a Win2003 server. The web uses Pages derived from a custom class I wrote (which itself derives from Page) to provide some common functionality. The Page_Load handler the failing webpage starts out like this: ...
3
9076
by: Mike | last post by:
Timeout Calling Web Service I am calling a .NET 1.1 web service from an aspx page. The web service can take several minutes to complete its tasks before returning a message to the aspx page. If the web service is taking a long time to complete, the aspx page returns a ‘The operation has timed-out.’ Message to the web browser after 100 seconds. I’ve added: <httpRuntime executionTimeout="300" /> to the web.config files
2
3143
by: Geler | last post by:
A theoretical question: Sorry if its a beginner question. Here is a quote from the MSDN explaning the C/C++ calling convention.. It demonstrates that the calling function is responsible to clean the stack pointer and it does it by the command "add esp,8" after returning from the called function. My questions: 1. Is the stack pointer common in a certain thread(or process)? 2. How does the called function get the parameters, is it by...
47
4941
by: teju | last post by:
hi, i am trying 2 merge 2 projects into one project.One project is using c language and the other one is using c++ code. both are working very fine independently.But now i need to merge both and my c++ code should call c code.but when i tried to call a function in c code externing that function in my c++ code, i am getting unresolved external symbol error. Whatever i try its giving more and more errrors...so is it possible to merge 2...
7
2677
by: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= | last post by:
I have a C# logging assembly with a static constructor and methods that is called from another C# Assembly that is used as a COM interface for a VB6 Application. Ideally I need to build a file name based on the name of the VB6 application. A second choice would be a file name based on the # COM interface assembly. I have tried calling Assembly.GetCallingAssembly() but this fails when I use the VB6 client. Is there a way to get this...
10
3248
by: sulekhasweety | last post by:
Hi, the following is the definition for calling convention ,which I have seen in a text book, can anyone give a more detailed explanation in terms of ANSI - C "the requirements that a programming system places on how a procedure is called and how data is passed between a calling program and procedures are called calling conventions"
0
8302
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8499
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8601
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5630
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4300
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1937
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.