473,399 Members | 2,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

simulate virtual directory for each user

Dear Friends

Would you please give me your professional idea about this asp.net problem.

I need different virtual directory for different customer with their names
like these:
www.oursite.com/Jack
www.oursite.com/Sue
www.oursite.com/Tom

I have a asp.net project. It is a website and the content of it WebPages
comes from database.
To give each user a virtual directory, I have 2 options:
1. create a virtual directory for each user and copy the asp.net project to
each directory
This is not a good solution.
2. Copy all the files to root directory (www.oursite.com) and when users
type
www.ourwebsite.com/jack or www.ourwebsite.com/sue, I can figure out the name
(jack or sue) and get the id of the user from database and bring the content
of that user's web pages from database.

I put the following code into Application_BeginRequest event in Global.asax
file:

dim sFolderName As String = Request.ApplicationPath.ToString.Trim("/")
dim AgentID as long = GetAgentIdByFolderName(sFolderName) 'from the
database
WriteAgentIdToCookie(AgentID)
Server.Transfer("AgentHomePage.aspx")

After writing the agent Id to client's cookie, I redirect to agent home page
and at this page, I read cookie and get agent id and bring the agent info
like its picture URL and home page info from database.

The problem is: When I type : www.oursite.com/Jack
I faced this error: page can not be found!

Do you think global.asax is a good place to put this code? and also this
code: Request.ApplicationPath ? HttpRequest or something?
Is there a better way to get what user typed I mean the folder name that
comes after my website.

I got web hosting service from another company so I do not have any control
over that company's IIS. I could not found a way in its web hosting's admin
site to set the default page. Any page with default or index name will come
when I type www.oursite.com without including file name.

Please help. Thank you very much in advance

Best Regards
Andy Eshtry


Nov 18 '05 #1
3 1724
Could you be more specific as to why each user needs their own directory?
What would "Jack" get that requires him to have a different directory than
"Sue" or "Tom"?

I ask because ASP.NET can build content on the fly. Content can be cached
based on an url parameter (i.e. the user) so that different users get
different output. And, there are many more options to ensure that different
users to a site get different results.
"Amir Eshterayeh" <ae*********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Dear Friends

Would you please give me your professional idea about this asp.net problem.
I need different virtual directory for different customer with their names
like these:
www.oursite.com/Jack
www.oursite.com/Sue
www.oursite.com/Tom

I have a asp.net project. It is a website and the content of it WebPages
comes from database.
To give each user a virtual directory, I have 2 options:
1. create a virtual directory for each user and copy the asp.net project to each directory
This is not a good solution.
2. Copy all the files to root directory (www.oursite.com) and when users
type
www.ourwebsite.com/jack or www.ourwebsite.com/sue, I can figure out the name (jack or sue) and get the id of the user from database and bring the content of that user's web pages from database.

I put the following code into Application_BeginRequest event in Global.asax file:

dim sFolderName As String = Request.ApplicationPath.ToString.Trim("/")
dim AgentID as long = GetAgentIdByFolderName(sFolderName) 'from the
database
WriteAgentIdToCookie(AgentID)
Server.Transfer("AgentHomePage.aspx")

After writing the agent Id to client's cookie, I redirect to agent home page and at this page, I read cookie and get agent id and bring the agent info
like its picture URL and home page info from database.

The problem is: When I type : www.oursite.com/Jack
I faced this error: page can not be found!

Do you think global.asax is a good place to put this code? and also this
code: Request.ApplicationPath ? HttpRequest or something?
Is there a better way to get what user typed I mean the folder name that
comes after my website.

I got web hosting service from another company so I do not have any control over that company's IIS. I could not found a way in its web hosting's admin site to set the default page. Any page with default or index name will come when I type www.oursite.com without including file name.

Please help. Thank you very much in advance

Best Regards
Andy Eshtry

Nov 18 '05 #2
Dear Mr. Scott and other friends
The point is my company sell the virtual directorys and give users
specific URL I mean www.mycom.com/sue or www.mycom.com/sandy
so that she can print the website with her name on her business card.
What are the ways I can show each user, typing the url I mention, his/her
specific content?
Thanks for your kind attention
Andy Eshtry

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Could you be more specific as to why each user needs their own directory?
What would "Jack" get that requires him to have a different directory than
"Sue" or "Tom"?

I ask because ASP.NET can build content on the fly. Content can be cached
based on an url parameter (i.e. the user) so that different users get
different output. And, there are many more options to ensure that different users to a site get different results.
"Amir Eshterayeh" <ae*********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Dear Friends

Would you please give me your professional idea about this asp.net

problem.

I need different virtual directory for different customer with their names like these:
www.oursite.com/Jack
www.oursite.com/Sue
www.oursite.com/Tom

I have a asp.net project. It is a website and the content of it WebPages
comes from database.
To give each user a virtual directory, I have 2 options:
1. create a virtual directory for each user and copy the asp.net project

to
each directory
This is not a good solution.
2. Copy all the files to root directory (www.oursite.com) and when users
type
www.ourwebsite.com/jack or www.ourwebsite.com/sue, I can figure out the

name
(jack or sue) and get the id of the user from database and bring the

content
of that user's web pages from database.

I put the following code into Application_BeginRequest event in

Global.asax
file:

dim sFolderName As String = Request.ApplicationPath.ToString.Trim("/")
dim AgentID as long = GetAgentIdByFolderName(sFolderName) 'from the
database
WriteAgentIdToCookie(AgentID)
Server.Transfer("AgentHomePage.aspx")

After writing the agent Id to client's cookie, I redirect to agent home

page
and at this page, I read cookie and get agent id and bring the agent info like its picture URL and home page info from database.

The problem is: When I type : www.oursite.com/Jack
I faced this error: page can not be found!

Do you think global.asax is a good place to put this code? and also this
code: Request.ApplicationPath ? HttpRequest or something?
Is there a better way to get what user typed I mean the folder name that
comes after my website.

I got web hosting service from another company so I do not have any

control
over that company's IIS. I could not found a way in its web hosting's

admin
site to set the default page. Any page with default or index name will

come
when I type www.oursite.com without including file name.

Please help. Thank you very much in advance

Best Regards
Andy Eshtry


Nov 18 '05 #3
One way to achieve this functionality is to do URL rewriting.

In ASP.NET you write a class to implement the IHttpModule interface.
Attach an event handler to the HttpApplication object's BeginRequest
event. Inside the event handler you can determine who the user is, set
variables in the Context object to remember them (you can pull them
out during page processing), then do a Content.RewritePath to assign
an internal path to the resource. So the user may see
www.mycom.com/sue/default.aspx but this page doesn't actually exist.
You may internally be sending the runtime to process the request from
x:\wwwroot\userdefault.aspx.

You configure the new module into your application through an entry in
the <httpModules> section of web.config.

This technique is popular in a number of open source projects you can
look at (the Community Starter Kit at http://asp.net and .Text blog
engine). I'm sure with some searching you can find other references.

--
Scott
http://www.OdeToCode.com

On Tue, 3 Feb 2004 11:26:52 -0800, "Amir Eshterayeh"
<ae*********@hotmail.com> wrote:
Dear Mr. Scott and other friends
The point is my company sell the virtual directorys and give users
specific URL I mean www.mycom.com/sue or www.mycom.com/sandy
so that she can print the website with her name on her business card.
What are the ways I can show each user, typing the url I mention, his/her
specific content?
Thanks for your kind attention
Andy Eshtry

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Could you be more specific as to why each user needs their own directory?
What would "Jack" get that requires him to have a different directory than
"Sue" or "Tom"?

I ask because ASP.NET can build content on the fly. Content can be cached
based on an url parameter (i.e. the user) so that different users get
different output. And, there are many more options to ensure that

different
users to a site get different results.
"Amir Eshterayeh" <ae*********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
> Dear Friends
>
> Would you please give me your professional idea about this asp.net

problem.
>
> I need different virtual directory for different customer with theirnames > like these:
> www.oursite.com/Jack
> www.oursite.com/Sue
> www.oursite.com/Tom
>
> I have a asp.net project. It is a website and the content of it WebPages
> comes from database.
> To give each user a virtual directory, I have 2 options:
> 1. create a virtual directory for each user and copy the asp.net project

to
> each directory
> This is not a good solution.
> 2. Copy all the files to root directory (www.oursite.com) and when users
> type
> www.ourwebsite.com/jack or www.ourwebsite.com/sue, I can figure out the

name
> (jack or sue) and get the id of the user from database and bring the

content
> of that user's web pages from database.
>
> I put the following code into Application_BeginRequest event in

Global.asax
> file:
>
> dim sFolderName As String = Request.ApplicationPath.ToString.Trim("/")
> dim AgentID as long = GetAgentIdByFolderName(sFolderName) 'from the
> database
> WriteAgentIdToCookie(AgentID)
> Server.Transfer("AgentHomePage.aspx")
>
> After writing the agent Id to client's cookie, I redirect to agent home

page
> and at this page, I read cookie and get agent id and bring the agentinfo > like its picture URL and home page info from database.
>
> The problem is: When I type : www.oursite.com/Jack
> I faced this error: page can not be found!
>
> Do you think global.asax is a good place to put this code? and also this
> code: Request.ApplicationPath ? HttpRequest or something?
> Is there a better way to get what user typed I mean the folder name that
> comes after my website.
>
> I got web hosting service from another company so I do not have any

control
> over that company's IIS. I could not found a way in its web hosting's

admin
> site to set the default page. Any page with default or index name will

come
> when I type www.oursite.com without including file name.
>
> Please help. Thank you very much in advance
>
> Best Regards
> Andy Eshtry
>
>
>
>



Nov 18 '05 #4

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

Similar topics

4
by: Mark Hoagland | last post by:
I've got a scenario with a web application where I must access the virtual directory being accessed from within the Application_OnStart event handler. Specifically, I have a series of IIS virtual...
1
by: Odie | last post by:
Hello, This probably seems like a silly question, but is it possible to have more than 1 ASP.Net project per virtual directory? The reason I'm wondering this, is because we already have an ASP.Net...
2
by: Amir Eshterayeh | last post by:
simulate virtual directory for each user Dear Friends Would you please give me your professional idea about this asp.net problem. I need different virtual directory for different customer...
10
by: Wm. Scott Miller | last post by:
We have a intranet site that allows one of our departments to search a set of pdfs and then look at them. Only problem is that only they and us geeks should be allowed to see the pdfs. We have it...
8
by: nick | last post by:
I have a problem and I've been using a cheezy work around and was wondering if anyone else out there has a better solution. The problem: Let's say I have a web application appA. Locally, I set...
0
by: Drew Berkemeyer | last post by:
Hello, I've been trying all day to create an installer for an ASP.NET application that has a sub-app running in a virtual directory under the primary app. Specifically, I have an ASP.NET...
7
by: J Smithers | last post by:
I have several ASPX pages (with code-behind logic) that I reuse amongst many Web sites on the same production server. Currently each Web site has its own copy of these aspx pages. I was thinking...
3
by: dph | last post by:
I have an asp.net application that I need to run from multiple different virtual directories. However, I don't want simply copy an instance of the application into each of these directories as...
1
by: Dave | last post by:
I am getting te following error in a ASP.Net app that is running on Win XP Pro (SP2): Server cannot access application directory 'C:\Documents and Settings\dave\My Documents\My Visual Studio...
9
by: antonyliu2002 | last post by:
I have a C# class GeneralUtilities.cs , which many of my aspx.cs files will refer to. So, I've put it under the App_Code folder and compiled it to library using csc /target: library from the DOS...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.