473,396 Members | 1,789 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,396 software developers and data experts.

WinXPro IIS from another PC on LAN

JDP
I've seen similar posts regarding remote debugging, but I'm not sure if that's
what I'm looking for.

FYI: My laptop has one of those low & wide monitors which never quite matches my
clients CRT.

What I want to do is open the ASP.Net web in...

First to just view the page output in the browser on a machine where I can
easily set the resolution similar to the client's, make changes in the app
(while not in debug mode) and re-test to prefect the UI experience.

Secondly, develop from my larger monitor desktop but have all the pieces live on
my WinXPro laptop.

I do this so that everything is always on my laptop and I can go to the client
with everything, I PKZip copies to my local server for safety & burn CD's from
there, but otherwise all the original components reside on my laptop, too many
times I've been at the client and realized that I'd forgotten to bring
something.

.... posted earlier in MS WinXP General

Before I go fixing and changing is there something that a standard WinXPro SP2
system should have changed to enable viewing web pages from another PC on a LAN?

I have a .Net application that I can access locally on my WinXPro system as

http://Box02/CompReq.Dev/ or http://localhost/CompReq.Dev/

Both open my default page, however I cannot access this from any other
system running Win2KPro or Win2KServer on my LAN.

The only element that I notice in Properties for the root web folder, |Security
is the addition of Internet Guest Accountno (Box02\USR_Box02) on this WinXPro
system.

Everyone is set to Read & Exec, List and Read = Allow.

Any clues are appreciated.

TIA

JeffP....
P.S. I've seen some workarounds for remote debugging, but since I'm not eager to
open my security and I'm not remote debugging this doesn't seem like a good
choice.
Nov 19 '05 #1
2 2429
JDP,

A few things I can think of:

First is the XP firewall on? If it's off / told to allow the computer trying
to connect to it then you should be able to connect to the application with:
http://[XP Box Name Here]/CompReq.Dev/

As far as viewing the window in the screen resolution of the client I use a
few javascripts added to my favorites to do that:

javascript:window.moveTo(0,0);window.resizeTo(640, 460);window.moveTo((screen.availWidth-640)/2,(screen.availHeight-460)/2);

javascript:window.moveTo(0,0);window.resizeTo(800, 580);window.moveTo((screen.availWidth-800)/2,(screen.availHeight-580)/2);

javascript:window.moveTo(0,0);window.resizeTo(1024 ,740);window.moveTo((screen.availWidth-1024)/2,(screen.availHeight-740)/2);

When clicked on (like a link) from my favorites folder each of these scripts
reset the browser window that currently has focus to the given size and
centers the window on the screen. Note that each window's height is 20
pixels less than the standard resolution to account for users who don't
auto-hide their start bar. I program everything on my local machine and when
I'm debugging I resize the window with a quick call to my favorites folder
in order to see the page in these various common sizes. These scripts work
in any browser.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"JDP@Work" <JP*********@sbcglobal.net> wrote in message
news:u1**************@TK2MSFTNGP15.phx.gbl...
I've seen similar posts regarding remote debugging, but I'm not sure if
that's
what I'm looking for.

FYI: My laptop has one of those low & wide monitors which never quite
matches my
clients CRT.

What I want to do is open the ASP.Net web in...

First to just view the page output in the browser on a machine where I can
easily set the resolution similar to the client's, make changes in the app
(while not in debug mode) and re-test to prefect the UI experience.

Secondly, develop from my larger monitor desktop but have all the pieces
live on
my WinXPro laptop.

I do this so that everything is always on my laptop and I can go to the
client
with everything, I PKZip copies to my local server for safety & burn CD's
from
there, but otherwise all the original components reside on my laptop, too
many
times I've been at the client and realized that I'd forgotten to bring
something.

... posted earlier in MS WinXP General

Before I go fixing and changing is there something that a standard WinXPro
SP2
system should have changed to enable viewing web pages from another PC on
a LAN?

I have a .Net application that I can access locally on my WinXPro system
as

http://Box02/CompReq.Dev/ or http://localhost/CompReq.Dev/

Both open my default page, however I cannot access this from any other
system running Win2KPro or Win2KServer on my LAN.

The only element that I notice in Properties for the root web folder,
|Security
is the addition of Internet Guest Accountno (Box02\USR_Box02) on this
WinXPro
system.

Everyone is set to Read & Exec, List and Read = Allow.

Any clues are appreciated.

TIA

JeffP....
P.S. I've seen some workarounds for remote debugging, but since I'm not
eager to
open my security and I'm not remote debugging this doesn't seem like a
good
choice.

Nov 19 '05 #2
JDP
S. Justin,

Thanks for your comprehensive reply.

Yes the firewall is on, that's SP2's way.

I tried the browser adjustment, it is darkside of the moon COOL, mostly because
it is so simple.

I'd still like to find a solution, when I'm collaborating, I like to peek at the
pages on my desktop to coach my associates on what's right or wrong back on the
laptop.

My workaround is to host the whole project to my LAN Win2K server, but that
means that I have to spend nearly an hour updating moving & testing all the
databases and any path issues just to have a working version on my laptop, which
cramps my style when it's time to go out to a client.

JeffP....
"S. Justin Gengo" <sjgengo@[no_spam_please]aboutfortunate.com> wrote in message
news:eP**************@TK2MSFTNGP15.phx.gbl...
JDP,

A few things I can think of:

First is the XP firewall on? If it's off / told to allow the computer trying
to connect to it then you should be able to connect to the application with:
http://[XP Box Name Here]/CompReq.Dev/

As far as viewing the window in the screen resolution of the client I use a
few javascripts added to my favorites to do that:

javascript:window.moveTo(0,0);window.resizeTo(640, 460);window.moveTo((screen.ava
ilWidth-640)/2,(screen.availHeight-460)/2);
javascript:window.moveTo(0,0);window.resizeTo(800, 580);window.moveTo((screen.ava
ilWidth-800)/2,(screen.availHeight-580)/2);
javascript:window.moveTo(0,0);window.resizeTo(1024 ,740);window.moveTo((screen.av
ailWidth-1024)/2,(screen.availHeight-740)/2);
When clicked on (like a link) from my favorites folder each of these scripts
reset the browser window that currently has focus to the given size and
centers the window on the screen. Note that each window's height is 20
pixels less than the standard resolution to account for users who don't
auto-hide their start bar. I program everything on my local machine and when
I'm debugging I resize the window with a quick call to my favorites folder
in order to see the page in these various common sizes. These scripts work
in any browser.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"JDP@Work" <JP*********@sbcglobal.net> wrote in message
news:u1**************@TK2MSFTNGP15.phx.gbl...
I've seen similar posts regarding remote debugging, but I'm not sure if
that's
what I'm looking for.

FYI: My laptop has one of those low & wide monitors which never quite
matches my
clients CRT.

What I want to do is open the ASP.Net web in...

First to just view the page output in the browser on a machine where I can
easily set the resolution similar to the client's, make changes in the app
(while not in debug mode) and re-test to prefect the UI experience.

Secondly, develop from my larger monitor desktop but have all the pieces
live on
my WinXPro laptop.

I do this so that everything is always on my laptop and I can go to the
client
with everything, I PKZip copies to my local server for safety & burn CD's
from
there, but otherwise all the original components reside on my laptop, too
many
times I've been at the client and realized that I'd forgotten to bring
something.

... posted earlier in MS WinXP General

Before I go fixing and changing is there something that a standard WinXPro
SP2
system should have changed to enable viewing web pages from another PC on
a LAN?

I have a .Net application that I can access locally on my WinXPro system
as

http://Box02/CompReq.Dev/ or http://localhost/CompReq.Dev/

Both open my default page, however I cannot access this from any other
system running Win2KPro or Win2KServer on my LAN.

The only element that I notice in Properties for the root web folder,
|Security
is the addition of Internet Guest Accountno (Box02\USR_Box02) on this
WinXPro
system.

Everyone is set to Read & Exec, List and Read = Allow.

Any clues are appreciated.

TIA

JeffP....
P.S. I've seen some workarounds for remote debugging, but since I'm not
eager to
open my security and I'm not remote debugging this doesn't seem like a
good
choice.


Nov 19 '05 #3

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

Similar topics

2
by: luu duong | last post by:
I know this is probably easy but here is the details. I have an asp page that is not inside a frameset. I want to post data to another asp page that is inside a frameset. So firstpage.asp has...
6
by: anon | last post by:
Post Forwarding question...... For this control below, <asp:Button runat="server" PostTargetUrl="page2.aspx" /> The Attribute: PostTargetUrl="page2.aspx" Is this PostTargetUrl Attribute...
1
by: SC G | last post by:
Hi, I use a web application that has 120 checkboxes on it for me to select from before I submit a form. I have to select boxes in groups of 40 (1-40,41-80,81-120). Each submission generates a...
5
by: Daniel Tan | last post by:
Are there anyway to copy rows of records from one query to another query and then hide the records in source query ? Pls advise. Thanks. Regards, Daniel
3
by: Kathy Burke | last post by:
Hi, I'm tired, so this question may be silly. I have a fairly long sub procedure. Based on one condition, I load another sub with the following: If Session("GRN") = "complete" Then txtScan.Text...
3
by: qwerty | last post by:
I´m new to ASP.Net. My workmate has some experience with it. He claimed that in ASP.Net working with frames is much simpler than it was ASP. I asked explanation but he couldn't give me such. (a...
17
by: Rabbit | last post by:
Hi, On my 1st page, i have a function which gets a new ID value and need to transfer to another immediately. which I want to get in 2nd page using Request.form("txtID"), but doesn't work, the...
16
by: Mike | last post by:
Hi, I have a form with some controls, and a different class that needs to modify some control properties at run time. Hoy can I reference the from so I have access to its controls and...
3
by: Sin Jeong-hun | last post by:
It seems like the Protect() uses the Windows accout information to encrypt data. If I know the user name and the password, can I decrypt it on another PC? If it is not, how about the exported key?...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...
0
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,...
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.