Image Slicing Problem in VS.NET

  • Thread starter Thread starter Microsoft
  • Start date Start date
M

Microsoft

I used photoshop to slice up some images. PS, creates the tables and
differant images. You are supposed to simple upload the photos and copy and
past the table codes taht was generated from the HTML PS creates. When I
launche the created html file everything looks good, but when I put the
table code into VS...there are spaces between the images were the slice was
at, the image is broken up and you can see the idfferant images which is the
point of slicing. Otherwise all the images are there.

Any on have this problem???

<HTML>
<HEAD>
<TITLE>header_stage_2_slice</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
<!-- ImageReady Slices (header_stage_2_slice.psd) -->
<TABLE WIDTH=1929 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD ROWSPAN=4>
<IMG SRC="images/headerLeftBorderSlice.jpg" WIDTH=40 HEIGHT=403
ALT=""></TD>
<TD ROWSPAN=4>
<A HREF="http://www.baliSurfTrader.com"
TARGET="http://www.baliSurfTrader.com">
<IMG SRC="images/headerLogoSlice.jpg" WIDTH=570 HEIGHT=403 BORDER=0
ALT=""></A></TD>
<TD ROWSPAN=4>
<IMG SRC="images/headerMidSlice.jpg" WIDTH=799 HEIGHT=403 ALT=""></TD>
<TD>
<IMG SRC="images/headerControlTopSlice.jpg" WIDTH=472 HEIGHT=101
ALT=""></TD>
<TD ROWSPAN=4>
<IMG SRC="images/headerRightSlice.jpg" WIDTH=48 HEIGHT=403 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/header_stage_2_slice_06_Mid.jpg" WIDTH=472 HEIGHT=101
ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/header_stage_2_slice_07MidB.jpg" WIDTH=472 HEIGHT=100
ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/headerControlBottomSlice.jpg" WIDTH=472 HEIGHT=101
ALT=""></TD>
</TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>
 
Compare the HTML in the regular HTML page with the HTML that your ASPX page
generates. One possibility is that VS.Net is modifying your HTML when you
paste it in.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
Cut and pasted it and is the same.
Kevin Spencer said:
Compare the HTML in the regular HTML page with the HTML that your ASPX
page generates. One possibility is that VS.Net is modifying your HTML when
you paste it in.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
What You Seek Is What You Get.
 
Cut and pasted it and is the same.

I was not referring to the designer view. I was referring to the HTML in the
browser, generated by the ASPX page when you run it. Is that the same? If
so, are you using a style sheet?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
Back
Top