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

asp.net controls are trash

hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards
Nov 17 '05 #1
11 1397
Not sure what you are talking about as behavior with different browsers is
completely configurable. Take a look at my answer to a post (yesterday):

"
Mozilla isn't uplevel browser by default (ASP.NET works for all browsers but
how it is configured to render for them, is very different thing). To get
browser detections work bit better, you need to add something as follows to
web.config (inside <system.web> tags).

******
<browserCaps>

<!--NETSCAPE 6 ja 7 //-->

<case match="^Mozilla/5\.0 \([^)]*\)
(Gecko/[-\d]+ )?Netscape[6|7]/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'lett
ers'\w*)).*">

tagwriter=System.Web.UI.HtmlTextWriter

browser=Netscape

version=${version}

majorversion=${major}

minorversion=${minor}

frames=true

tables=true

cookies=true

javascript=true

javaapplets=true

ecmascriptversion=1.5

w3cdomversion=1.0

css1=true

css2=true

xml=true

<filter match="^b" with="${letters}">

beta=true

</filter>

</case>

<!-- MOZILLA //-->

<case
match="^Mozilla/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters' \w*)).*">
<case match="^[5-9]\." with="${version}">

tagwriter=System.Web.UI.HtmlTextWriter

frames=true

tables=true

cookies=true

javascript=true

javaapplets=true

ecmascriptversion=1.5

w3cdomversion=1.0

css1=true

css2=true

xml=true

</case>
</case>

<!--

OPERA 5+

//-->

<case match="Opera[
/](?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters' \w*))">

browser=Opera

version=${version}

majorversion=${major}

minorversion=${minor}

frames=true

tables=true

cookies=true

javascript=true

ecmascriptversion=1.1

<filter match="[4-9]" with="${major}">

ecmascriptversion=1.3

css1=true

css2=true

xml=true

<filter match="[5-9]" with="${major}">

tagwriter=System.Web.UI.HtmlTextWriter

w3cdomversion=1.0

</filter>

</filter>

<filter match="^b" with="${letters}">

beta=true

</filter>

</case>

</browserCaps>

****

"

For more exact explanation see this post at ASP.NEt Forums:

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
"Tommy" <th***********@hannover-leasing.de> wrote in message
news:eu**************@TK2MSFTNGP11.phx.gbl...
hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards

Nov 17 '05 #2
Interesting. I've been building web sites for a global publishing company
with asp.net for two years now. I always test each site for netscape,
various versions of IE, Safari, Opera, and even Web TV.

It's always worked perfectly.

I know this will sound cruel, but perhaps you just haven't learned how to
program with it. I would suggest using it a bit more and reading up on how
to solve any problems you may be having. If you run into something you just
can't solve, post your code here, the community is very helpful.

Good Luck!

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Tommy" <th***********@hannover-leasing.de> wrote in message
news:eu**************@TK2MSFTNGP11.phx.gbl...
hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards

Nov 17 '05 #3
Well, you're entitled to your opinion I guess, but I've recently moved to
..NET, using C#, and I've so far built 3 good sized sites using it, and they
are all Cross-Browser....plus I'm finding that putting a the effort into the
design of .NET solutions means you can actually build the functionality very
rapidly.....

I'm also pleased to be writing "real" code rather than a load of
disconnected "scripts", something I hated when I made the transition from
c++ client-server development to web based applications, and having used
Coldfusion, ASP, PHP and Perl for the last 4 or 5 years, I can say that .NET
is a massive improvement - but the learning curve is steep if you're used to
writing simple scripts.

Of course, every platform does have it's little problems or annoyances, but
to be honest, maybe you should give it a bit more of a chance - learn the
platform a little more, have patience and ask questions here - everyone's
usually happy to help work out problems with you :-)

"Tommy" <th***********@hannover-leasing.de> wrote in message
news:eu**************@TK2MSFTNGP11.phx.gbl...
hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards

Nov 17 '05 #4
I think you mean if YOU want to build a web site using asp.net, forget it.
There are plenty of us out there who have no problem doing so.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.

"Tommy" <th***********@hannover-leasing.de> wrote in message
news:eu**************@TK2MSFTNGP11.phx.gbl...
hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards

Nov 17 '05 #5
hi kevin,

i haved build a few asp-net applications allready.
no problem, because in our intranet we all use internet explorer

so i build a website for internet. and i spend a lot of time for
searching how the site dont want to display correctly with
non-ms-browsers.....
the time is running and i feeling like "aaaarrrgh"
this is why i do a posting like before......
----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
----------------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #6
hello teemu keiski,

i talk about that:
i give my asp-labels a specialy style and a background-color

in debug-mode, all will display fine -- but on the webspace of my
service-provider......:-(

i ´ve design a form with a few textboxes. in internet explorer, all is
fine- but with opera-browser, the textboxes will displayed very small --
not usable

i´ve add your code to my web.config.
but nothing is happen-- what i have to do more??

thanks for reply...

best regards
----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
----------------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #7
Browser compatibilty is an issue that makes us all feel like "aaaarrrgh" my
friend! Unfortunately, there isn't a simple solution to the problem.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.

"RASTA" <th***********@hannover-NOSPAM-leasing.de> wrote in message
news:Os*************@tk2msftngp13.phx.gbl...
hi kevin,

i haved build a few asp-net applications allready.
no problem, because in our intranet we all use internet explorer

so i build a website for internet. and i spend a lot of time for
searching how the site dont want to display correctly with
non-ms-browsers.....
the time is running and i feeling like "aaaarrrgh"
this is why i do a posting like before......
----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
----------------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #8
On Tue, 11 Nov 2003 04:55:01 -0600, "S. Justin Gengo"
<sj*****@aboutfortunate.com> wrote:
Interesting. I've been building web sites for a global publishing company
with asp.net for two years now. I always test each site for netscape,
various versions of IE, Safari, Opera, and even Web TV.

It's always worked perfectly.

I know this will sound cruel, but perhaps you just haven't learned how to
program with it. I would suggest using it a bit more and reading up on how
to solve any problems you may be having. If you run into something you just
can't solve, post your code here, the community is very helpful.

Good Luck!

Sincerely,

Does this mean that it works withot the .net runtime on the client machine? Does
it work on Mac ?

Jim

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Tommy" <th***********@hannover-leasing.de> wrote in message
news:eu**************@TK2MSFTNGP11.phx.gbl...
hello,

if you want to build a website using asp.net, forget it!!!!!
asp-controls are displaying wrong, if it viewed with a
non-microsoft-browser--> big bullshit!!!!
no one will help you to fix this problem
<b>microsoft only want to sell her products-- silly money making</b>

if i know this before, i never have spend one minute to learn asp.net !!!!

best regards



Nov 17 '05 #9
On Wed, 12 Nov 2003 08:37:46 GMT, ji*******@getit.someotherway (Jim Lawton)
wrote:

snip

Does this mean that it works withot the .net runtime on the client machine? Does
it work on Mac ?


OK, I've got it - "It's supposed to, but the rendering is fraught with problems
in non-ie browsers" -

J

Nov 17 '05 #10
yes, but if i buy a development environment for very much money,
I expects to build some applications and not spend hours of hours for
fixing an "failure"

and if i have to do something, i want a understandable manual, what to
do and how to do

----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
----------------------------------------

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #11
Jim,

I've got a powerbook g4 sitting right next to me. (I do some programming on
it too.)

I always test all my sites in IE, IE on the Mac, and Safari. They all run
exactly the same. And I haven't jumped through any hoops. I've never had a
problem with any of the rendering.

That said when I build a site I don't rely on css. Most of the browsers
support varying levels of css. If you leave Visual Studio.Net set to it's
defaults then it is targeting IE and using grid layout. That will never be
cross browser. All that I do is turn off grid layout and use regular old
html tables, or self designed css for the layout. I also make certain that I
set each page for the browser compatibility that's necessary (Document
Properties targetSchema property.)

If you don't set the IDE to deliver to the platforms you need to deliver to
then of course it won't work. :)

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Jim Lawton" <ji*******@getit.someotherway> wrote in message
news:3f**************@text.news.ntlworld.com...
On Wed, 12 Nov 2003 08:37:46 GMT, ji*******@getit.someotherway (Jim Lawton) wrote:

snip

Does this mean that it works withot the .net runtime on the client machine? Doesit work on Mac ?

OK, I've got it - "It's supposed to, but the rendering is fraught with

problems in non-ie browsers" -

J

Nov 17 '05 #12

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

Similar topics

21
by: Jim Hubbard | last post by:
I have found one .Net control that I just love......DotNetBar. But, I haven't found a plethora of great controls or class libraries (like I had with my VB 6). What am I missing? (No spam...
0
by: | last post by:
I'm come from a self-taught ASP/Dreamweaver background and over the last year have used VS.NET/ASP.NET/C# more and more to the point that it is my primary development environment now. VS.NET is an...
2
by: =?Utf-8?B?Q3lyaWwgR3VwdGEgfCDgpLjgpL/gpLDgpL/gpLIg | last post by:
Hello, I have an interesting problem. I wish to show a set of controls on a form repeatedly. Sort of like an ASP.Net repeated, but without any data binding (I want to be able to put in the...
32
by: =?Utf-8?B?U2l2?= | last post by:
I have a form that I programmatically generate some check boxes and labels on. Later on when I want to draw the form with different data I want to clear the previously created items and then put...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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...
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...

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.