473,466 Members | 1,312 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

IE7 and master pages

I'm using master page for my web app. On one of my web forms (content) I'm
using a GridView and a panel to show a graph. In IE6 the page shows
correctly, the master page expands and shows the footer, gridview and graph
correclty. In IE7 the master page does not expand and my grid is overlaying
my footer in my master page. Is there a way to fix this?
Aug 24 '06 #1
11 1200
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:C9**********************************@microsof t.com...
I'm using master page for my web app. On one of my web forms (content) I'm
using a GridView and a panel to show a graph. In IE6 the page shows
correctly, the master page expands and shows the footer, gridview and
graph
correclty. In IE7 the master page does not expand and my grid is
overlaying
my footer in my master page. Is there a way to fix this?
Is your site XHTML-compliant...?
http://validator.w3.org/
Aug 24 '06 #2
I'm it in .NET 05 and I can't validate it due to its on our internal servers
right now and not out on the web yet.

"Mark Rae" wrote:
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:C9**********************************@microsof t.com...
I'm using master page for my web app. On one of my web forms (content) I'm
using a GridView and a panel to show a graph. In IE6 the page shows
correctly, the master page expands and shows the footer, gridview and
graph
correclty. In IE7 the master page does not expand and my grid is
overlaying
my footer in my master page. Is there a way to fix this?

Is your site XHTML-compliant...?
http://validator.w3.org/
Aug 24 '06 #3
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.
Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #4
I found the upload feature and just uploaded my file for validation

"Mark Rae" wrote:
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.

Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #5
some of the errors make no sense to me:
example:
Line 13 column 35: there is no attribute "ID".
<asp:Label ID="lblWelcome" runat="server" Text="
why would this error?

or:
there is no attribute "runat".
.... <asp:Label ID="lblWelcome" runat="server" Text
and I'm getting error like that? what do they mean and how can I fix them?
remove the attributes, or what?

"Mark Rae" wrote:
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.

Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #6
If this is the text you read in the browser then your aspx page is not
being parsed directly, i.e. it's sending back the raw ASPX not the
rendered output of the page.

Either that or did you copy the contents of the aspx file into the
validator!

Kevin Jones

CSharpguy wrote:
some of the errors make no sense to me:
example:
Line 13 column 35: there is no attribute "ID".
<asp:Label ID="lblWelcome" runat="server" Text="
why would this error?

or:
there is no attribute "runat".
... <asp:Label ID="lblWelcome" runat="server" Text
and I'm getting error like that? what do they mean and how can I fix them?
remove the attributes, or what?

"Mark Rae" wrote:
>"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microso ft.com...
>>I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.
Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #7
i uploaded my master page to the site for validation. So it read the aspx
page once I uploaded. The master page is given me the issue in IE7, not the
content pages, just the master page.

"Kevin Jones" wrote:
If this is the text you read in the browser then your aspx page is not
being parsed directly, i.e. it's sending back the raw ASPX not the
rendered output of the page.

Either that or did you copy the contents of the aspx file into the
validator!

Kevin Jones

CSharpguy wrote:
some of the errors make no sense to me:
example:
Line 13 column 35: there is no attribute "ID".
<asp:Label ID="lblWelcome" runat="server" Text="
why would this error?

or:
there is no attribute "runat".
... <asp:Label ID="lblWelcome" runat="server" Text
and I'm getting error like that? what do they mean and how can I fix them?
remove the attributes, or what?

"Mark Rae" wrote:
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...

I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.
Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #8
i uploaded my master page to the site for validation. So it read the
aspx
page once I uploaded. The master page is given me the issue in IE7,
not the
content pages, just the master page.

Right, but it's the output from the pages that's causing the problem!
The validator validtes (X)HTML not the .aspx page. You need to get the
output from the page and pass that to the validator!

Kevin

CSharpguy wrote:
>
"Kevin Jones" wrote:
>If this is the text you read in the browser then your aspx page is not
being parsed directly, i.e. it's sending back the raw ASPX not the
rendered output of the page.

Either that or did you copy the contents of the aspx file into the
validator!

Kevin Jones

CSharpguy wrote:
>>some of the errors make no sense to me:
example:
Line 13 column 35: there is no attribute "ID".
<asp:Label ID="lblWelcome" runat="server" Text="
why would this error?

or:
there is no attribute "runat".
... <asp:Label ID="lblWelcome" runat="server" Text
and I'm getting error like that? what do they mean and how can I fix them?
remove the attributes, or what?

"Mark Rae" wrote:

"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@micro soft.com...

I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.
Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button
Aug 24 '06 #9
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:5F**********************************@microsof t.com...
>i uploaded my master page to the site for validation.
Why on earth did you do that?
So it read the aspx page once I uploaded.
Did you actually read my previous reply, specifically the bit about View
Source...?
The master page is given me the issue in IE7, not the
content pages, just the master page.
Neither can function in isolation...
Aug 24 '06 #10
Go to the IE blog and you'll find out what's going on. Basically as I read
it IE7 will break alot of sites including those built with ASP.NET
crippleware.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP 43°2'17"N 88°2'37"W : 43°2'17"N 88°2'37"W

[1] http://blogs.msdn.com/ie/

"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:5F**********************************@microsof t.com...
>i uploaded my master page to the site for validation. So it read the aspx
page once I uploaded. The master page is given me the issue in IE7, not
the
content pages, just the master page.

"Kevin Jones" wrote:
>If this is the text you read in the browser then your aspx page is not
being parsed directly, i.e. it's sending back the raw ASPX not the
rendered output of the page.

Either that or did you copy the contents of the aspx file into the
validator!

Kevin Jones

CSharpguy wrote:
some of the errors make no sense to me:
example:
Line 13 column 35: there is no attribute "ID".
<asp:Label ID="lblWelcome" runat="server" Text="
why would this error?

or:
there is no attribute "runat".
... <asp:Label ID="lblWelcome" runat="server" Text
and I'm getting error like that? what do they mean and how can I fix
them?
remove the attributes, or what?

"Mark Rae" wrote:

"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:83**********************************@microso ft.com...

I'm it in .NET 05 and I can't validate it due to its on our internal
servers
right now and not out on the web yet.
Sigh...

1) Open the webpage which is giving you problems

2) Do a View Source

3) Select the entire source

4) Copy the entire source

5) Go to the following site: http://validator.w3.org/

6) Scroll down to the "Validate by Direct Input" section

7) Paste the source

8) Hit the button

Aug 24 '06 #11
I was bored.

yeah i read it and I uploaded the file prior to reading your post.
"Mark Rae" wrote:
"CSharpguy" <CS*******@discussions.microsoft.comwrote in message
news:5F**********************************@microsof t.com...
i uploaded my master page to the site for validation.

Why on earth did you do that?
So it read the aspx page once I uploaded.

Did you actually read my previous reply, specifically the bit about View
Source...?
The master page is given me the issue in IE7, not the
content pages, just the master page.

Neither can function in isolation...
Aug 24 '06 #12

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

Similar topics

5
by: Michael Herman \(Parallelspace\) | last post by:
1. What are some compelling solutions for using Master/Content pages with Web Pages? 2. If a content area has a web part zone with web parts, what is the user experience like when "editting" the...
20
by: Alan Silver | last post by:
Hello, In classic ASP, I used to use two include files on each page, one before and one after the main content, to provide a consistent layout across a web site. That way I could just change the...
1
by: Alan Silver | last post by:
Hello, I am just experimenting with master pages, and am trying to add a content placeholder in the <head> section, so that individual pages can set their own page title and meta tags. The...
17
by: Rob R. Ainscough | last post by:
Again another simple concept that appears NOT to be intuitive or I'm just stupid. I've read the WROX book and the example doesn't actually show how the .master page links in the other content...
3
by: Rich | last post by:
Hi, I want to use 2 master pages, one for the main part of the site, the other for the admin pages. They are quite similar, with many shared elements. Ideally I would like to have a parent...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.