localhost vs. MyComputer

V

Vik

I need a gridview without the borders but with the gridlines.
I set BorderStyle = None and GridLines = Both.
If I run a project from VS2005 or enter an address in a browser
//localhost/MyProject/MyPage.aspx then the grid appears WITHOUT the borders
and WITH the gridlines.
If I open the same page by an address //MyCompName/MyProject/MyPage.aspx,
then the grid appears WITH the borders and with the gridlines.
If I set BorderWidth = 0px, then //localhost/... shows the grid WITHOUT the
borders and WITH the gridlines and //MyCompName/... shows the grid WITHOUT
the borders and WITHOUT the gridlines.

When a page is placed on a server, it appears the same way as at
//MyCompName/...

Why does the same page appear in different ways? How can I fix it?

Thanks.

Victor
 
C

Cowboy \(Gregory A. Beamer\)

Without seeing the code and understanding your computer's set up, I have no
clue.

--
Gregory A. Beamer
MCP: +I, SE, SD, DBA

*********************************************
| Think outside the box!
|
*********************************************
 
C

Cowboy \(Gregory A. Beamer\)

Without seeing the code and understanding your computer's set up, I have no
clue.

--
Gregory A. Beamer
MCP: +I, SE, SD, DBA

*********************************************
| Think outside the box!
|
*********************************************
 
V

Vik

Here is the source code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<form method="post" action="TableBorder.aspx" id="form1">
<table cellspacing="0" rules="all" bordercolor="black" border="1"
id="GridView1"
style="border-style:None; border-collapse:collapse;">
<tr><td>FirstName</td><td>LastName</td></tr>
<tr><td>John</td><td>Smith</td></tr>
<tr><td>Robert</td><td>Doe</td></tr>
</table>
</form>
</body>
</html>
http://localhost/Incidents/TableBorder.aspx- the table appears without the
borders and with the rules. I need to get this on the server.

http://MyComp/Incidents/TableBorder.aspx - the table appears with the
borders and with the rules. The same on the server.

The same behaivior if I change the file name to *.htm.

I have Windows XP, IIS 5.1. The server has Windows 2003.

Thanks.

Victor
 
V

Vik

Here is the source code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<form method="post" action="TableBorder.aspx" id="form1">
<table cellspacing="0" rules="all" bordercolor="black" border="1"
id="GridView1"
style="border-style:None; border-collapse:collapse;">
<tr><td>FirstName</td><td>LastName</td></tr>
<tr><td>John</td><td>Smith</td></tr>
<tr><td>Robert</td><td>Doe</td></tr>
</table>
</form>
</body>
</html>
http://localhost/Incidents/TableBorder.aspx- the table appears without the
borders and with the rules. I need to get this on the server.

http://MyComp/Incidents/TableBorder.aspx - the table appears with the
borders and with the rules. The same on the server.

The same behaivior if I change the file name to *.htm.

I have Windows XP, IIS 5.1. The server has Windows 2003.

Thanks.

Victor
 
M

Mark

If you're using Internet Explorer 8, make sure that you do not have
Compatability View switched on when viewing the page via MyCompName.

Cheers,
Mark.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top