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

Can Macintosh users able to access ASP.NET 2.0 site?

Hi,

I am new user to ASP.NET2.0? I would like to know can Macintosh users
able to access ASP.NET 2.0 site ?

I also want to know what are the features of ASP.NET2.0 which are not
supported for Mancintosh pcs? what are the workarounds for them?

Please guide me if anybody has accessed ASP.NET2.0 from Macintosh Pc.

Thanks and Regards,
Amit Samniwala

Oct 12 '06 #1
9 1969
<dr***********@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
I am new user to ASP.NET2.0? I would like to know can Macintosh users
able to access ASP.NET 2.0 site ?
It's important to understand that the main functionality of ASP.NET (just
like ASP, PHP, Perl, Java etc) is to render HTML markup and maybe
client-side JavaScript dynamically at run-time and stream it down to the
client browser. There's nothing particularly mysterious about this. The
client browser simply doesn't care (and probably doesn't know anyway) which
server-side technology was used to serve its content.
I also want to know what are the features of ASP.NET2.0 which are not
supported for Mancintosh pcs? what are the workarounds for them?
Again, there's nothing unique to ASP.NET 2 here. Just make sure that you
design your pages to be XHTML-compliant, and you can be reasonably certain
that they will render well enough on just about any browser on any operating
system, including Windows, Mac, Linux etc. That rule would apply equally
well if you were using ASP.NET v1.x, ASP Classic, Java, PHP, FrontPage, or
just plain old Notepad!

There are two main exceptions to this: only the Windows version of Microsoft
Internet Explorer supports ActiveX controls and client-side VBScript, so you
should avoid these at all costs. That said, ActiveX controls can be very
useful in *controlled and enclosed* environments where the browser platform
is predetermined e.g. for a corporate intranet, but should never be used on
a public site.
Oct 12 '06 #2
Hi Just to clarify that,

I would like to know whether Application developed in ASP.NET2.0 works
properly in Mac OS and IE Browser5.0 or so?

Thanks and Regards,
Amit Samniwala

dr***********@gmail.com wrote:
Hi,

I am new user to ASP.NET2.0? I would like to know can Macintosh users
able to access ASP.NET 2.0 site ?

I also want to know what are the features of ASP.NET2.0 which are not
supported for Mancintosh pcs? what are the workarounds for them?

Please guide me if anybody has accessed ASP.NET2.0 from Macintosh Pc.

Thanks and Regards,
Amit Samniwala
Oct 12 '06 #3
<dr***********@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.com...
I would like to know whether Application developed in ASP.NET2.0 works
properly in Mac OS and IE Browser5.0 or so?
See my previous answer. ASP.NET 2 is irrelevant in this case.

However, IE is no longer shipped with MacOSX, and was officially
discontinued by Microsoft over three years ago:
http://www.microsoft.com/mac/product...ternetexplorer

Therefore, you'd be well advised to use either Safari or FireFox to test
your pages on a Mac.
Oct 12 '06 #4
Hi Mark,

If I don't use Client side Vbscript and Activex control, will the site
developed in Asp.net2.0 work fine on IE5.0 Mac Os?
>From your statement, does it mean that ASP.NET2.0's(Controls, Menubar,
Validations, Object Data Souce Controls, Treeview Control) are
compatible with IE5.0 browser on Mac OS.

Thanks and Regards,
Amit Samniwala.

Oct 12 '06 #5
<dr***********@gmail.comwrote in message
news:11**********************@i3g2000cwc.googlegro ups.com...
If I don't use Client side Vbscript and Activex control, will the site
developed in Asp.net2.0 work fine on IE5.0 Mac Os?
Only you can know that. Just because you don't use VBScript or ActiveX
controls, doesn't guarantee anything.

What standards do you code to...?

Is your markup XHTML-compliant...?
>>From your statement, does it mean that ASP.NET2.0's(Controls, Menubar,
Validations, Object Data Souce Controls, Treeview Control) are
compatible with IE5.0 browser on Mac OS.
I have no idea, nor could I care less...

As I've already told you, Microsoft themselves dropped all support for IE on
the Mac over three years ago...

Let it go - it's gone.

Use Safari, Apple's new default MacOSX browser, or download and install
FireFox. Or Opera. Or Camino. Or SeaMonkey. Or...

On your site's homepage, detect the browser and OS and, if it's IE for Mac,
post a friendly message to the user telling them that IE for Mac is no
longer supported by the manufacturer and offer them alternatives.

If you have a Mac with IE installed on it, go here:

http://www.sanctuaryrig.co.uk
Oct 12 '06 #6
Hello,
Again, there's nothing unique to ASP.NET 2 here. Just make sure that you
design your pages to be XHTML-compliant, and you can be reasonably certain
that they will render well enough on just about any browser on any
operating system, including Windows, Mac, Linux etc.
Sorry but I disagree! I have a simple dotnet framework V2 website designed
without any fancy vbscript of javascript or third party controls and IT
STILL FAILS to display corrently under the Safari browsers (tested on
different Macs as well!)! Basically Safari does not seen to understand too
well the <DIVelement when they are nested and adjacent ...... very
frustrating indeed!

Thanks for your feedback upfront.

Edward Melbourne - Australia
"Mark Rae" <ma**@markNOSPAMrae.comwrote in message
news:Ot**************@TK2MSFTNGP02.phx.gbl...
<dr***********@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
>I am new user to ASP.NET2.0? I would like to know can Macintosh users
able to access ASP.NET 2.0 site ?

It's important to understand that the main functionality of ASP.NET (just
like ASP, PHP, Perl, Java etc) is to render HTML markup and maybe
client-side JavaScript dynamically at run-time and stream it down to the
client browser. There's nothing particularly mysterious about this. The
client browser simply doesn't care (and probably doesn't know anyway)
which server-side technology was used to serve its content.
>I also want to know what are the features of ASP.NET2.0 which are not
supported for Mancintosh pcs? what are the workarounds for them?

Again, there's nothing unique to ASP.NET 2 here. Just make sure that you
design your pages to be XHTML-compliant, and you can be reasonably certain
that they will render well enough on just about any browser on any
operating system, including Windows, Mac, Linux etc. That rule would apply
equally well if you were using ASP.NET v1.x, ASP Classic, Java, PHP,
FrontPage, or just plain old Notepad!

There are two main exceptions to this: only the Windows version of
Microsoft Internet Explorer supports ActiveX controls and client-side
VBScript, so you should avoid these at all costs. That said, ActiveX
controls can be very useful in *controlled and enclosed* environments
where the browser platform is predetermined e.g. for a corporate intranet,
but should never be used on a public site.

Oct 12 '06 #7
"Edward" <aR******@hotmail.comwrote in message
news:J3*******************@news-server.bigpond.net.au...
>Again, there's nothing unique to ASP.NET 2 here. Just make sure that you
design your pages to be XHTML-compliant, and you can be reasonably
certain that they will render well enough on just about any browser on
any operating system, including Windows, Mac, Linux etc.
Sorry but I disagree!
What are you apologising for - daring to disagree with someone on a public
newsgroup...?
Thanks for your feedback upfront.
See my reply to your other post...
Oct 12 '06 #8
Hi Amit,

My site written in ASP 2 is now happily working under Internet Explorer,
Safari and Mozilla-Firefox thanks to Marks suggestions, advice and help.

please refer to Mark's suggestions in this posting for the solution(s).

cheers

Ed
<dr***********@gmail.comwrote in message
news:11**********************@b28g2000cwb.googlegr oups.com...
Hi Just to clarify that,

I would like to know whether Application developed in ASP.NET2.0 works
properly in Mac OS and IE Browser5.0 or so?

Thanks and Regards,
Amit Samniwala

dr***********@gmail.com wrote:
>Hi,

I am new user to ASP.NET2.0? I would like to know can Macintosh users
able to access ASP.NET 2.0 site ?

I also want to know what are the features of ASP.NET2.0 which are not
supported for Mancintosh pcs? what are the workarounds for them?

Please guide me if anybody has accessed ASP.NET2.0 from Macintosh Pc.

Thanks and Regards,
Amit Samniwala

Oct 19 '06 #9
"Edward" <aR******@hotmail.comwrote in message
news:zc*******************@news-server.bigpond.net.au...
please refer to Mark's suggestions in this posting for the solution(s).
Specifically, the bit about informing clients that IE for Mac is no longer
supported by the manufacturer, and advising them to download, install and
use another Mac browser...
Oct 19 '06 #10

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

Similar topics

5
by: Mark Werner | last post by:
I'd like some suggestions on Macintosh software for creating one's own web page. Any help? Thanks!
1
by: Jon Angel | last post by:
In the absence of MS IE for the Mac, does anyone have experience with available browsers that might allow Macintosh users to access an existing C# ..NET application? -- Jon Angel HHS (many Mac...
5
by: Nico | last post by:
My database have 20 tables and many users. I wish to store encrypted data in 3 tables and have only 3 users have access to them, walking into tables or using forms. Can someone point me a direct...
6
by: mark | last post by:
I have an asp.net ecommerce web application on a remote web server. I'm using an Access database on the back end. I've notice a few strange things. When I mimic an multiple user environment by...
7
by: ABC | last post by:
How can I deny all users directly access image files from images folder?
2
by: muskan | last post by:
hello, I want to give password when we open the enterprise manager .So that only the authorised users can access the database & see the tables . Could u help me for solving this problem. &...
1
by: leela mn | last post by:
Hi Everybody!!! i have a situation where in i should allow users to access the website only once from a particular system.. so is there any way from which we can know all the windows open????
1
by: Sport Girl | last post by:
Hello everybody, i hope that you are doing well. Please can anybody help me with this task, it is urgent: does anybody know how to grant access privileges to tables to users in Access 2007....
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...

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.