473,503 Members | 1,710 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C# dotnet asp application - only works with MSIE?

Ook
I've given up on MySQL for now - and just built a basic c# dotnet asp web
app. It works. However, if I try to view the app in a non-Microsoft browser,
it doesn't do anything. Specifically, I'm using Mozilla Firebird. It doesn't
know what to do with file type aspx. Do asp dotnet C# apps only work with
MSIE?
Nov 15 '05 #1
6 2463

"Ook" <usenet@no****@emberts.com> wrote in message
news:ul**************@TK2MSFTNGP10.phx.gbl...
I've given up on MySQL for now - and just built a basic c# dotnet asp web app. It works. However, if I try to view the app in a non-Microsoft browser, it doesn't do anything. Specifically, I'm using Mozilla Firebird. It doesn't know what to do with file type aspx. Do asp dotnet C# apps only work with MSIE?


ASP.NET apps (C# is just a language, so that's irrelevant to this
discussion) are cross-browser compatible.

If nothing is showing up, then it's possible you used the evil VS.NET
2002/3 visual designer for ASP.NET pages. By default, it will default
to GRID view which is IE-specific. If you change to "Flow layout",
or don't use the designer at all, it should show up in Mozilla just
fine.

-c
Nov 15 '05 #2
Ook

"Chad Myers" <cm****@N0.SP.4M.austin.rr.com> wrote in message
news:RR*********************@twister.austin.rr.com ...

"Ook" <usenet@no****@emberts.com> wrote in message
news:ul**************@TK2MSFTNGP10.phx.gbl...
I've given up on MySQL for now - and just built a basic c# dotnet asp

web
app. It works. However, if I try to view the app in a non-Microsoft

browser,
it doesn't do anything. Specifically, I'm using Mozilla Firebird. It

doesn't
know what to do with file type aspx. Do asp dotnet C# apps only work

with
MSIE?


ASP.NET apps (C# is just a language, so that's irrelevant to this
discussion) are cross-browser compatible.

If nothing is showing up, then it's possible you used the evil VS.NET
2002/3 visual designer for ASP.NET pages. By default, it will default
to GRID view which is IE-specific. If you change to "Flow layout",
or don't use the designer at all, it should show up in Mozilla just
fine.

-c


I am indeed using GRID view. I'll change to flow layout and see what
happens.
Nov 15 '05 #3
Ook
It asks me what to do with the file type "aspx". I need to figure out how to
get Mozilla to treat it as an html file - if it's even possible. If I copy
the file to a htm file, it loads it but it doesn't align it properly. I'm
going to try Chad's suggestion of using free flow instead of grid layout.
Good old Microsoft - give us tools, and force the user to use MSIE. I
thought they learned their lesson after the J++ fiasco? LOL
"Chris Capel" <ch***@ibanktech.net.zerospam> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Does it load a blank page, or treat it as an unknown file type? It's
possible that if you change your file associations so that Mozilla treats an aspx as an webpage instead of a binary file or something that it'll work. Of course, I don't use the browser, so I don't know how possible this is.

Chris

"Ook" <usenet@no****@emberts.com> wrote in message
news:ul**************@TK2MSFTNGP10.phx.gbl...
I've given up on MySQL for now - and just built a basic c# dotnet asp web app. It works. However, if I try to view the app in a non-Microsoft

browser,
it doesn't do anything. Specifically, I'm using Mozilla Firebird. It

doesn't
know what to do with file type aspx. Do asp dotnet C# apps only work with MSIE?



Nov 15 '05 #4
"Ook" <usenet@no****@emberts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
It asks me what to do with the file type "aspx". I need to figure out how to get Mozilla to treat it as an html file - if it's even possible. If I copy the file to a htm file, it loads it but it doesn't align it properly. I'm going to try Chad's suggestion of using free flow instead of grid layout. Good old Microsoft - give us tools, and force the user to use MSIE. I thought they learned their lesson after the J++ fiasco? LOL


If it's asking you what to do with the file, then it does not sound
like a grid / flow problem to me. (Although you should change that as
well.) It sounds more like the content type on the server is wrong.
What server are you using? IIS should have that right. You are going
through a webserver - right? You can't just point Mozilla to the file
on your harddrive.

My redhat browser: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2)
Gecko/20030716
works just fine on aspx pages.
Just for grins, try pointing going to the following url (narrow down
to browser vs. server)

http://www.mag37.com/aspnet/StoreClient/custom.aspx
and see if that works. (note, my connection isn't 100% reliable, so
you might want to confirm my site's up at
http://www.mag37.com )

--
Michael Mayer
mr*****@charter.net
My CSharp page: http://www.mag37.com/csharp/

Nov 15 '05 #5
Ook
If it's asking you what to do with the file, then it does not sound
like a grid / flow problem to me. (Although you should change that as
well.) It sounds more like the content type on the server is wrong.
What server are you using? IIS should have that right. You are going
through a webserver - right? You can't just point Mozilla to the file
on your harddrive.

My redhat browser: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2)
Gecko/20030716
works just fine on aspx pages.
Just for grins, try pointing going to the following url (narrow down
to browser vs. server)

http://www.mag37.com/aspnet/StoreClient/custom.aspx
and see if that works. (note, my connection isn't 100% reliable, so
you might want to confirm my site's up at
http://www.mag37.com )

--
Michael Mayer
mr*****@charter.net
My CSharp page: http://www.mag37.com/csharp/


Something strange is indeed going on here. It loads your file just fine. I'm
running IIS on port 81, and Omni Httpd on port 80. If I load the page with
MSIE, it loads just fine from both servers. If I use Firebird, it loads fine
from the omnihttpd server, but it I load it from the IIS server,
MozillaFirebird asks me what to do with files of type aspx.

So...something on my IIS server is causing this? MSIE works, Firebird
doesn't, but Firebird works from Omni httpd server. Very strange, I'm not
quite sure what to do here. It's apparently my IIS server, but I'm not quite
sure where to look. If anyone has any suggestions, they would be much
appreciated, in the meantime I'll poke around with my IIS server and see
what I can figure out.
Nov 15 '05 #6
"Ook" <usenet@no****@emberts.com> wrote in message news:%
Something strange is indeed going on here. It loads your file just fine. I'm running IIS on port 81, and Omni Httpd on port 80. If I load the page with MSIE, it loads just fine from both servers. If I use Firebird, it loads fine from the omnihttpd server, but it I load it from the IIS server,
MozillaFirebird asks me what to do with files of type aspx.

Hmm, my server is IIS. Although it is proxied behind Apache (on
linux). However, I don't think apache is changing file types. I
can't imagine the default IIS settings would be wrong. Possibly try
putting IIS on port 80 to see if it works there - could be some wierd
glitch in IIS.

You might also try sniffing the HTTP packets and see exactly what the
server is sending. Look especially at the content type header. This
is a good packet sniffer w/ free trial download:
http://www.gjpsoft.com/UltraNetSniffer/

--
Michael Mayer
mr*****@charter.net
My CSharp page: http://www.mag37.com/csharp/


Nov 15 '05 #7

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

Similar topics

0
970
by: James Ward | last post by:
I want to print the content of a datagrid within my dotnet application. The user will make adjustments to the datagrid columns or rows then print the content to a printer of their choice. The...
2
2934
by: assi | last post by:
Hello all We are developing a large dotnet application, which includes ~ 120 assemblies. (total size of all binaries is ~ 20MB). Our application also references the following dotnet assemblies:...
4
3034
by: Dave | last post by:
I need to add the ability to drag from a Windows Form and drop into a non dotNet application. For example, having a generated image in my app that I wish to drag out into explorer as a friendly way...
0
1086
by: jeff | last post by:
Hi, Does anyone know if there is any paper on web talking about why should port existing MFC application to pure dotnet application (WinForm)? what kind of cost will it be? Thanks in advance ...
0
1080
by: Joby Chacko via .NET 247 | last post by:
Dear All, How can integrate the MS Money with DotNET application.My requirement is an application, which uses SQL Server and Exports and Imports data from MS Money. Any response or leads will be...
0
1617
by: kDineshBabumca | last post by:
Hi , I am new to webservices. I have one application in java. That application is run in Jboss server (UNIX OS). From that I want to call another application which is developed in Dot net...
1
1211
by: Jim Carlock | last post by:
My first question here involves understanding what files are used where in regards to a dotnet application. For instance, I see a bunch of .config files. One I opened up looks like it represents...
1
1903
by: arunarokkam | last post by:
how to integrate dotnet application with tally? is there any methods available?
4
6097
by: srivineel | last post by:
Hello EveryBody I need to send sms from dotnet application to my mobile. For this task i have gone through the material on the net. Iam getting good info abt this. And in ...
0
1084
by: jaleel | last post by:
Hi All, I have a dotnet application (Windows appln) from which I am connecting to SQL server 2005. My doubt is can I connect to SQL server DB in a remote machine from the machine where the Dotnet...
0
7199
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
7074
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
7322
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...
1
6982
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7451
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...
1
5000
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
4667
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
1
731
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
374
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.