+ Reply to Thread
Page 1 of 3
1 2 3 LastLast
Results 1 to 10 of 29

Thread: Newbe C# Platform question

  1. #1
    Newbie cob98tp is an unknown quantity at this point
    Join Date
    Jul 2008
    Posts
    1

    Newbe C# Platform question

    Hi all,

    I'm new to C# and have a (hopefully) quick question...

    I'm looking to build a website that will utilise C#, and I guess therefore the .NET platform. The tools I aim to build include very simple drawing tools in the browser.

    My question is this... Will users of Macs be able to use the features of the web-site I build? Will I have to be careful in my construction of the site to use only Web-Form classes, or will Mac users have to download a 3rd party tool such as Mono?

    Thanks in advance for answers to my question - It is greatly appreciated as this is crucial to whether or not I begin to learn C# and develop this project... (on a side note... if the answer is no, are there any other platforms that you would reccommend to develop this project?)

  2. #2
    Code Warrior marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89's Avatar
    Join Date
    Jul 2008
    Location
    Somewhere that is shorter to write than "In the gloomy shadows of my personal namespace"
    Posts
    10,164
    Blog Entries
    2

    Re: Newbe C# Platform question

    Direct quote from Main Page - Mono

    "Mono provides the necessary software to develop and run .NET client and server applications on Linux, Solaris, Mac OS X, Windows, and Unix."

    This means: Yes, Mac users will be able to use your features, as long as they have mono...

    I recommend Java for Cross-platform projects. It's great for both web and desktop.

  3. #3
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    Re: Newbe C# Platform question

    Yeah, might be too much hassle for MAC and Linux users to install mono... while many users have Java installed..

  4. #4
    Xav
    Xav is offline
    Code Slinger Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav's Avatar
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,210
    Blog Entries
    13

    Re: Newbe C# Platform question

    As long as you host the site on a .NET server, any browser on any system can view it, regardless. Like with ASP.NET, you mean?

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  5. #5
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    Re: Newbe C# Platform question

    Yeah... maybe you are right, I've got no idea.

  6. #6
    Xav
    Xav is offline
    Code Slinger Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav's Avatar
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,210
    Blog Entries
    13

    Re: Newbe C# Platform question

    Well, maybe cob's a bit confused. .NET is a technology for writing desktop applications, not websites.

    The only way in which you can use .NET with C# on the internet is by using ASP.NET, and setting the language as an attribute to C#. You must host it on a Windows (.NET enabled) server. Then, the server will send ordinary HTML pages back to the user, so it can be viewed (hopefully) on PCs, Macs, Linux, mobiles, Nintendo DS... you get the idea.

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  7. #7
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    Re: Newbe C# Platform question

    As normal HTML code? Just like PHP. Right?

  8. #8
    Xav
    Xav is offline
    Code Slinger Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav has much to be proud of Xav's Avatar
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,210
    Blog Entries
    13

    Re: Newbe C# Platform question

    YES! PHP and ASP are both server-side languages! That's what I'm getting at. It's just that ASP.NET tucks the entire .NET Framework under its belt as well.

    As opposed to <?php ?> tags, ASP uses <% %>.

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  9. #9
    TcM
    TcM is offline
    Code Warrior TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM is a name known to all TcM's Avatar
    Join Date
    Aug 2006
    Posts
    11,461
    Blog Entries
    6

    Re: Newbe C# Platform question

    Not a big fan of .NET..

    You think that a linux sever can run mono? and still host this .NET thing on a linux server?

  10. #10
    Code Warrior marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89 is a glorious beacon of light marwex89's Avatar
    Join Date
    Jul 2008
    Location
    Somewhere that is shorter to write than "In the gloomy shadows of my personal namespace"
    Posts
    10,164
    Blog Entries
    2

    Re: Newbe C# Platform question

    I never saw the logic behind .NET not being for... net...

+ Reply to Thread
Page 1 of 3
1 2 3 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Majoring in Computer Science, got a question
    By shimmy in forum General Programming
    Replies: 7
    Last Post: 02-03-2008, 11:09 AM
  2. are bitmap files platform dependant?
    By PAUL1966 in forum C and C++
    Replies: 15
    Last Post: 01-27-2008, 05:44 PM
  3. Witch platform shall I use?
    By paez in forum General Programming
    Replies: 2
    Last Post: 12-09-2007, 07:24 PM
  4. Use Pexpect module in windows platform
    By ryanszeto in forum Python
    Replies: 3
    Last Post: 08-16-2007, 07:05 AM

Bookmarks

Bookmarks

     
        Algorithms and Data Structures

        Java tutorials

        Algorithms Forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts