473,769 Members | 2,345 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

request.applica tionpath

Hi,

I am developing a class to help my asp.net application along.
The class is part of a seperate project although this project is included in
the same solution as my main web application.

I wish to use the function "request.applic ationpath" from inside my class.

In solution explorer I have right clicked on the references node and added a
reference to system.web.dll

in the class file I have added the following line

Imports System.Web.Http Request

and the main declartion looks like this

Namespace Utility
Public Class WebHelper
Public Function SiteRoot() As String
Dim strServer As String
strServer = Request.Applica tionPath()
Return strServer
End Function
End Class
End Namespace

however visual studio does not like the request.applica tion path. I have
check the docs and unless I am wrong I believe this is a part or

Imports System.Web.Http Request which I have imported.

any help is appreciated.

thanks in advance.

martin.





Nov 18 '05 #1
2 3823
You have to have it use the current context, in other words, the client
thread that is making the request.

Try HttpContext.Cur rent.Request.Ap plicationPath() instead. The same thing
holds true for other context-sensitive items, such as calling the Trace
object, Response, User, etc.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP- FrontPage

"martin" <ma************ ***@hotmail.com > wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hi,

I am developing a class to help my asp.net application along.
The class is part of a seperate project although this project is included in the same solution as my main web application.

I wish to use the function "request.applic ationpath" from inside my class.
In solution explorer I have right clicked on the references node and added a reference to system.web.dll

in the class file I have added the following line

Imports System.Web.Http Request

and the main declartion looks like this

Namespace Utility
Public Class WebHelper
Public Function SiteRoot() As String
Dim strServer As String
strServer = Request.Applica tionPath()
Return strServer
End Function
End Class
End Namespace

however visual studio does not like the request.applica tion path. I have
check the docs and unless I am wrong I believe this is a part or

Imports System.Web.Http Request which I have imported.

any help is appreciated.

thanks in advance.

martin.





Nov 18 '05 #2
Hi mark,

Thank you very much for that. It works brilliantly.

a very good tip.

cheers

martin.

"Mark Fitzpatrick" <ma******@fitzm e.com> wrote in message
news:O6******** ******@tk2msftn gp13.phx.gbl...
You have to have it use the current context, in other words, the client
thread that is making the request.

Try HttpContext.Cur rent.Request.Ap plicationPath() instead. The same thing
holds true for other context-sensitive items, such as calling the Trace
object, Response, User, etc.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP- FrontPage

"martin" <ma************ ***@hotmail.com > wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hi,

I am developing a class to help my asp.net application along.
The class is part of a seperate project although this project is
included in
the same solution as my main web application.

I wish to use the function "request.applic ationpath" from inside my class.

In solution explorer I have right clicked on the references node and

added a
reference to system.web.dll

in the class file I have added the following line

Imports System.Web.Http Request

and the main declartion looks like this

Namespace Utility
Public Class WebHelper
Public Function SiteRoot() As String
Dim strServer As String
strServer = Request.Applica tionPath()
Return strServer
End Function
End Class
End Namespace

however visual studio does not like the request.applica tion path. I have
check the docs and unless I am wrong I believe this is a part or

Imports System.Web.Http Request which I have imported.

any help is appreciated.

thanks in advance.

martin.






Nov 18 '05 #3

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

Similar topics

5
2392
by: Vadym Stetsyak | last post by:
Hi, All! For example if I have http://server/myvirtualpath/someotherpath/page.asp and virtual path on the IIS is http://server/myvirtualpath How can I retrieve above mentioned asp application path. I need the same functionality that has ASP.NET (Request.ApplicationPath)
0
2341
by: Jim Corey | last post by:
I've seen this same sort of code (below) on other posts. This works fine for me on my development machine, but not when I move it to my hosted site. When I view the source from my machine, I see: src='/MyProjectFolder/Javascript/datepicker.js' On the hosted site I get: src='//Javascript/datepicker.js' and it doesn't work. Any ideas on what I can do to make the same code work both places?
1
3553
by: Ponnurangam | last post by:
Hi, I have completed a website using Request.ApplicatioPath in a lot of places. eg.: (<img src='<%= Request.ApplicationPath %>/Images/logo.gif' />) It works locally, but doesn't work thru internet after I deployed it. It works if I move the whole website into a sub folder from the root folder.
5
5343
by: Miljana | last post by:
Hi, I have one problem with cookies in ASP.NET application. It seems that I can not retreive cookie from Request.Cookies collection. I put cookie in Response.Cookies collection, and after page post back, when I try to retreive it from Request.Cookies collection, it appears that it does not exists. This problem does not occur on several developing machines we use for developing application, but occurs in another environment (another...
2
2575
by: ad | last post by:
I want to get the Application path, I use the code: string sDir = Request.ApplicationPath ; It run well in code behind, but if I place the code above in Global.asax like: void Application_Start(Object sender, EventArgs e) { string sDir = Request.ApplicationPath ; }
0
1547
by: Chris | last post by:
Hi, i use a masterpage in my application. When navigating to another site without closing the browser and then coming back to the application, the images and css styles are lost. So i did this for the images: <img src="<%=Request.ApplicationPath%>/images/01.gif" /> and this works.
0
1435
by: Chris | last post by:
Hi, When navigating to another site without closing the browser and then coming back to the application, the images and css styles are lost. So i did this for the images: <img src="<%=Request.ApplicationPath%>/images/01.gif" /> and this works. Now my css file (green.css) is in App_Themes/green and i refer to it from
5
1834
by: Rory Becker | last post by:
I have had code in my Application_Start which is intended to run once at the start of my application's life. It loads connection information and similar from a known location. However I recently migrated my app using ------------------------------------------------------------- %systemroot%\system32\inetsrv\APPCMD.EXE migrate config "Default Web Site/YourApp" -------------------------------------------------------------
2
3627
by: CKKwan | last post by:
Dear All, Using VS2008 on Vista (IIS7). Request.ApplicationPath return something like "http://localhost:50440/" When deploy into Server 2003 (IIS6), found that Request.ApplicationPath is returning "c:\\Inetpub\..." May I know what has gone wrong?
0
10222
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9999
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,...
1
7413
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
6675
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
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3967
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
3570
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
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.