Click here to Skip to main content
15,892,537 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: How To Develop for the Cloud in Visual Studio 2010! Pin
Eddy Vluggen24-Apr-10 23:34
professionalEddy Vluggen24-Apr-10 23:34 
AnswerRe: How To Develop for the Cloud in Visual Studio 2010! Pin
Peace ON28-Apr-10 2:06
Peace ON28-Apr-10 2:06 
QuestionExternal css Pin
Morgs Morgan22-Apr-10 2:20
Morgs Morgan22-Apr-10 2:20 
AnswerRe: External css Pin
WoutL22-Apr-10 2:53
WoutL22-Apr-10 2:53 
GeneralRe: External css Pin
Morgs Morgan22-Apr-10 3:23
Morgs Morgan22-Apr-10 3:23 
AnswerRe: External css Pin
Sandesh M Patil22-Apr-10 6:56
Sandesh M Patil22-Apr-10 6:56 
QuestionIframe problem Pin
josephong21-Apr-10 19:07
josephong21-Apr-10 19:07 
AnswerRe: Iframe problem Pin
enhzflep21-Apr-10 22:19
enhzflep21-Apr-10 22:19 
The line
<iframe src ="http://localhost/cgi-bin/6_nodeid.cgi" width="28" height="40" scrolling="No">

gets processed on the client computer, not the server. So when you run it on your computer, it points
to something on your machine. When you run it on your colleague's machine, it points to a resource on
their computer.

The way around this is to have the server set the "http://localhost/" part of the address at the time
the page is served, or to hard-code the ip of your machine (which will work fine for local, intranet pages)

What you've been doing manually (replacing the address) is something you need to do automatically.
(you can check the ip of the client and do nothing if its 127.0.0.1 or set it to the IP address of the
server if the client request originates from a machine other than the server) Without knowing your
requirements etc, I can't see any reason not to make the server automatically insert it's own IP regardless
of who the client is. This way the software will be portable between machines Smile | :) without needing to change
the hard-coded IP address each time. D'Oh! | :doh:
QuestionWhy is this page not the same as the others? Pin
Dalek Dave21-Apr-10 10:17
professionalDalek Dave21-Apr-10 10:17 
AnswerRe: Why is this page not the same as the others? Pin
User 171649221-Apr-10 11:13
professionalUser 171649221-Apr-10 11:13 
GeneralRe: Why is this page not the same as the others? Pin
Dalek Dave21-Apr-10 11:39
professionalDalek Dave21-Apr-10 11:39 
GeneralRe: Why is this page not the same as the others? Pin
User 171649221-Apr-10 12:32
professionalUser 171649221-Apr-10 12:32 
GeneralRe: Why is this page not the same as the others? Pin
xTraCD22-Apr-10 19:59
xTraCD22-Apr-10 19:59 
GeneralRe: Why is this page not the same as the others? Pin
User 171649222-Apr-10 21:08
professionalUser 171649222-Apr-10 21:08 
GeneralRe: Why is this page not the same as the others? Pin
Dalek Dave22-Apr-10 22:17
professionalDalek Dave22-Apr-10 22:17 
GeneralRe: Why is this page not the same as the others? [modified] Pin
User 171649222-Apr-10 23:23
professionalUser 171649222-Apr-10 23:23 
QuestionDiv Alignment. Pin
salmonraju20-Apr-10 21:22
salmonraju20-Apr-10 21:22 
AnswerRe: Div Alignment. Pin
Tony Richards20-Apr-10 22:21
Tony Richards20-Apr-10 22:21 
GeneralRe: Div Alignment. Pin
Dalek Dave20-Apr-10 22:25
professionalDalek Dave20-Apr-10 22:25 
AnswerRe: Div Alignment. Pin
Dalek Dave20-Apr-10 22:24
professionalDalek Dave20-Apr-10 22:24 
GeneralRe: Div Alignment. Pin
salmonraju20-Apr-10 23:19
salmonraju20-Apr-10 23:19 
GeneralRe: Div Alignment. Pin
User 171649221-Apr-10 0:40
professionalUser 171649221-Apr-10 0:40 
GeneralRe: Div Alignment. Pin
salmonraju21-Apr-10 2:04
salmonraju21-Apr-10 2:04 
GeneralRe: Div Alignment. Pin
User 171649221-Apr-10 2:43
professionalUser 171649221-Apr-10 2:43 
AnswerRe: Div Alignment. Pin
daveyerwin21-Apr-10 6:04
daveyerwin21-Apr-10 6:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.