Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Create ASP pages Automatic

Reply
Thread Tools

Create ASP pages Automatic

 
 
Creat ASP Page Automatic
Guest
Posts: n/a
 
      08-01-2004
Hi;

I want to ask you something very important for me ..

how can i Create daynamic pages or static pages Automatic .??????????!!!

i have a problem with my website i want Create page asp classic to every member
The page name equal the member name

www.Micrsoft.com/Ashraf.asp

If i have 3000 members in my website it's possible to generate 3000 pages for everymember Automatic and if it is possible how can i do this ??

my Tec. are ASp classic and java script ..
thank you
 
Reply With Quote
 
 
 
 
Dave Anderson
Guest
Posts: n/a
 
      08-02-2004
Creat ASP Page Automatic wrote:
>
> i have a problem with my website i want Create page asp classic to
> every member The page name equal the member name
>
> www.Micrsoft.com/Ashraf.asp
>
> If i have 3000 members in my website it's possible to generate 3000
> pages for everymember Automatic and if it is possible how can i do
> this ??


This obviously assumes you have access to a data store with employee
information, as well as unique usernames. Assuming that is true, I suppose
one way to accomplish this would be with a custom 404 error page. You can
certainly parse the Request.ServerVariables("URL") or
Request.ServerVariables("SCRIPT_NAME") to establish the member being sought:

[JScript]
var member =
Request.ServerVariables("URL").split("/").pop().split(".").shift()

(This would assign the value "Ashraf" in your example)


Take it from there.


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.





 
Reply With Quote
 
 
 
 
Bullschmidt
Guest
Posts: n/a
 
      08-04-2004
<<
how can i Create daynamic pages or static pages Automatic .??????????!!!
>>


This might help:

FileSystemObject
http://www.4guysfromrolla.com/webtec...leSystemObject
5-part FAQ

Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
http://www.Bullschmidt.com
Classic ASP Design Tips, ASP Web Database Sample (Freely Downloadable)


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
automatic syntax highlighting in web pages ? Matthias Pospiech HTML 6 01-16-2005 01:29 PM
Create ASP classic pages Automatic?? Creat ASP Page Automatic ASP General 2 08-01-2004 11:44 AM
Automatic build process + automatic NuNit (2 in 1 solution) ASP .Net 1 06-29-2004 04:15 PM
Four ASP.NET Pages in Frames Vs. One ASP.NET Pages Manish ASP .Net 1 11-17-2003 05:56 PM
Automatic Registration of ActiveX Controls in aspx pages Sunil Menon ASP .Net 0 08-13-2003 02:13 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57