473,399 Members | 3,401 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,399 software developers and data experts.

dotnet controls seen much differently on IE and on netscape.

Hello,
The following show in netscape with a line delemiter between each row.

How can I avoid this behaviour in Netscape ?

<asp:Table runat="server" CellPadding="0" GridLines="horizontal"
HorizontalAlign="Center" dir = "rtl" border = "0" width = "558">
<asp:TableRow>
<asp:TableCell>
<asp:RequiredFieldValidator
ControlToValidate="a_name"
Text="*"
runat="server" />
</asp:TableCell>
<asp:TableCell>Text 1:</asp:TableCell>
<asp:TableCell><asp:TextBox id="a_name" runat="server"
/></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 2:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 3:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks :)
Nov 18 '05 #1
6 1014
Hi,

perhaps this would help ypu (if you mean Netscape 6 or newer)
http://www.asp.net/Forums/ShowPost.a...1&PostID=89874

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist

"Mr. x" <a@b.com> wrote in message news:3f******@news.012.net.il...
Hello,
The following show in netscape with a line delemiter between each row.

How can I avoid this behaviour in Netscape ?

<asp:Table runat="server" CellPadding="0" GridLines="horizontal"
HorizontalAlign="Center" dir = "rtl" border = "0" width = "558">
<asp:TableRow>
<asp:TableCell>
<asp:RequiredFieldValidator
ControlToValidate="a_name"
Text="*"
runat="server" />
</asp:TableCell>
<asp:TableCell>Text 1:</asp:TableCell>
<asp:TableCell><asp:TextBox id="a_name" runat="server"
/></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 2:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 3:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks :)

Nov 18 '05 #2
I beleive by setting the target browser property of the document in VS.NET
2002, this problem can be solved.

Thanks,
Jagan Mohan

"Mr. x" <a@b.com> wrote in message news:3f******@news.012.net.il...
Hello,
The following show in netscape with a line delemiter between each row.

How can I avoid this behaviour in Netscape ?

<asp:Table runat="server" CellPadding="0" GridLines="horizontal"
HorizontalAlign="Center" dir = "rtl" border = "0" width = "558">
<asp:TableRow>
<asp:TableCell>
<asp:RequiredFieldValidator
ControlToValidate="a_name"
Text="*"
runat="server" />
</asp:TableCell>
<asp:TableCell>Text 1:</asp:TableCell>
<asp:TableCell><asp:TextBox id="a_name" runat="server"
/></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 2:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 3:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks :)

Nov 18 '05 #3
> I beleive by setting the target browser property of the document in VS.NET
2002, this problem can be solved.

How can this be done, please.

Thanks :)
Nov 18 '05 #4
Hi,

In VS.NET open the aspx page in design mode. Right click the document and
Properies.
There is an option called TARGET SCHEMA.Against it there will be a dropdown
with values like Internet Explorer 5.0, Netscape Navigator.
Choose your desired schema.

Else add this tag in the <head> tag
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie3-2nav3-0">

Thanks,
Jagan Mohan
"Mr. x" <a@b.com> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
I beleive by setting the target browser property of the document in VS.NET 2002, this problem can be solved.

How can this be done, please.

Thanks :)

Nov 18 '05 #5
Hello,

You mean of VS.NET - Visual Studio .NET ?
If so, I don't have one,
but I would like to hear what can I do in VS.NET more then usual site
written in notepad, or simmiliar ?

Does VS.NET has good debugger ? Is VS.NET's debugger is a relaiable one ?
How much VS.NET costs, and does it have any trial demo for windows-xp ?

Thanks :)

"Jagan Mohan" <ja*********@scapevelocity.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hi,

In VS.NET open the aspx page in design mode. Right click the document and
Properies.
There is an option called TARGET SCHEMA.Against it there will be a dropdown with values like Internet Explorer 5.0, Netscape Navigator.
Choose your desired schema.

Else add this tag in the <head> tag
<meta name=vs_targetSchema
content="http://schemas.microsoft.com/intellisense/ie3-2nav3-0">

Thanks,
Jagan Mohan
"Mr. x" <a@b.com> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
I beleive by setting the target browser property of the document in VS.NET 2002, this problem can be solved.

How can this be done, please.

Thanks :)


Nov 18 '05 #6
Try at : www.moca.co.il/test/main.html

I have copied the netscape section
( in the example of the link :
case match="^Mozilla/5\.0 \([^)]*\) (Gecko/[-\d]+ )?Netscape[6|7] ...
....
)

, but I got no new behaviour in Netscape (the same problem ...)

The site is in Hebrew,
but if you click on the left button, you'll see what I ment.

Thanks :)

"Teemu Keiski" <jo****@aspalliance.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Hi,

perhaps this would help ypu (if you mean Netscape 6 or newer)
http://www.asp.net/Forums/ShowPost.a...1&PostID=89874

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist

"Mr. x" <a@b.com> wrote in message news:3f******@news.012.net.il...
Hello,
The following show in netscape with a line delemiter between each row.

How can I avoid this behaviour in Netscape ?

<asp:Table runat="server" CellPadding="0" GridLines="horizontal"
HorizontalAlign="Center" dir = "rtl" border = "0" width = "558">
<asp:TableRow>
<asp:TableCell>
<asp:RequiredFieldValidator
ControlToValidate="a_name"
Text="*"
runat="server" />
</asp:TableCell>
<asp:TableCell>Text 1:</asp:TableCell>
<asp:TableCell><asp:TextBox id="a_name" runat="server"
/></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 2:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell></asp:TableCell>
<asp:TableCell>Text 3:</asp:TableCell>
<asp:TableCell><asp:TextBox runat="server" /></asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks :)


Nov 18 '05 #7

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

Similar topics

0
by: Antonio Maciel | last post by:
Hi. I tried the asp.net newsgroup before but with no success. I have some asp.net validator controls on the pages of a site. In IE the controls work ok but when I run the site on Netscape 7...
6
by: christian9997 | last post by:
Hi I would be very helpful if someone could help me with this code. It works fine in IE but when I display it in Netscape or Firefox and I move the mouse from one menu to the other the gap...
5
by: jen_designs | last post by:
How do I create custom controls for an embeded video. I need stop, play, pause, etc. Any thoughts?
1
by: Mike George | last post by:
I am having a problem with dynamic validation controls. I have some code that uses an XSLT to transform an XMLDocument into HTML which creates ASP.NET validation controls dynamically (v 1.1). ...
0
by: Mr. x | last post by:
Hello, I am sending this emal again, because it was a week ago, and I want to clarify some new things. I have problem on .NET, which are seen differently on IE and Netscape. Look at sit of...
6
by: Stephen | last post by:
Hi, Does Validation controls like "Required field validator".... ever work with Netscape or we have to write javascript for either client-side or write server side validation. Please advice....
0
by: Mark Derman | last post by:
Hi All OK, this one has me baffled and infuriated!?!?!?! I've unfortunately upgraded our W2003 server to dotNET 1.1 SP1 and it appears that validation controls with EnableClientScript=true...
29
by: amos | last post by:
Hi I'm experiencing a real nasty thing about dotnet. I've made a big application in dotnet and I would like to use ILAYERS for netscape 4. You CAN NOT USE Layers and Form buttons in...
4
by: Block | last post by:
(Da ich immer nur unter Solaris und Linux Programmiere bin ich nicht Sachkundig.) Mir hat man gesagt, dass DotNet Freeware ist und jeder damit Programme Programmieren kann und sie weiter geben...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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...

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.