I want to learn .NET from basic to advance

21 replies
Hi guyz,

I'm newbies and wan to learn .NET. I have little bit know how about programming. I can search over Google but would see somebody's experience. Kindly share the best links over there I can learn .NET from starter to advance stage.
#advance #basic #learn #net
  • Profile picture of the author mattDroid
    Here are 200 C# tutorials (from the basics to some more advanced stuff)
    -> thenewboston.org/list.php?cat=15
    have fun
    {{ DiscussionBoard.errors[6419711].message }}
  • Profile picture of the author maria2
    You can buy .net book from any online store or local shop.
    {{ DiscussionBoard.errors[6420973].message }}
    • Profile picture of the author Brandon Tanner
      If you're referring to VB.NET, there are some great beginner-level tutorials here.

      Then once you've got the basics down, check out YouTube for more specific stuff. There are probably thousands of VB tutorials there (of varying quality, of course)!
      Signature

      {{ DiscussionBoard.errors[6421801].message }}
  • Profile picture of the author TrafficMystic
    i would check out the wrox press books.. written for programmers by programmers
    {{ DiscussionBoard.errors[6421805].message }}
  • Profile picture of the author YemTv
    it helps you great.and became expert in 24 hours.
    Complete .Net Guide Book
    Signature
    CBDISCOUNTS - Clickbank Discounted Marketplace
    Magic Article Rewriter - SAVE $24 OFF!
    {{ DiscussionBoard.errors[6422432].message }}
  • Profile picture of the author webpeon
    Im teaching a friend .net at the moment, heres some advice I gave him...

    get yourself a hardcopy (not the ebook) of murachs , not because its a better book than the 1000's out there but because the page layout is probably the best I have seen, split page book detailed description on the left, summary/images etc on the right which a nice flow through from one part of .net to the next.

    go with c# not because its a better language than basic, they are both capable of accomplishing the exact same thing, the difference is search results when looking for information as you could imagine if you were searching for 'basic textbox control' as opposed to 'c# textbox control' or 'csharp textbox control' the relevant result differences are huge

    get familiar with the msdn website library its invaluable for knowledge relating to classes which brings me to my last piece of advice,as you learn take note of what class each control belongs to, this will help you at a later date in your learning


    good luck, enjoy
    Signature
    Web 2 Mobile
    The Future of The Web
    {{ DiscussionBoard.errors[6423474].message }}
    • Profile picture of the author dawidtailor
      Originally Posted by webpeon View Post

      Im teaching a friend .net at the moment, heres some advice I gave him...

      get yourself a hardcopy (not the ebook) of murachs , not because its a better book than the 1000's out there but because the page layout is probably the best I have seen, split page book detailed description on the left, summary/images etc on the right which a nice flow through from one part of .net to the next.

      go with c# not because its a better language than basic, they are both capable of accomplishing the exact same thing, the difference is search results when looking for information as you could imagine if you were searching for 'basic textbox control' as opposed to 'c# textbox control' or 'csharp textbox control' the relevant result differences are huge

      get familiar with the msdn website library its invaluable for knowledge relating to classes which brings me to my last piece of advice,as you learn take note of what class each control belongs to, this will help you at a later date in your learning


      good luck, enjoy
      I want to develop my business web based application, In that application I want to add one control date and time so can you give me its coding? How can i write this coding in asp .net?
      {{ DiscussionBoard.errors[6426522].message }}
      • Profile picture of the author webpeon
        Originally Posted by dawidtailor View Post

        I want to develop my business web based application, In that application I want to add one control date and time so can you give me its coding? How can i write this coding in asp .net?
        Im not understanding what you want, can you be more specific.. do you want a label that shows and increments the current time or a calender where you select a date time
        Signature
        Web 2 Mobile
        The Future of The Web
        {{ DiscussionBoard.errors[6426637].message }}
        • Profile picture of the author dawidtailor
          Originally Posted by webpeon View Post

          Im not understanding what you want, can you be more specific.. do you want a label that shows and increments the current time or a calender where you select a date time
          No, I want to coding about date and time display. If I click date and time button than it display current date and time.
          {{ DiscussionBoard.errors[6433570].message }}
          • Profile picture of the author webpeon
            Originally Posted by dawidtailor View Post

            No, I want to coding about date and time display. If I click date and time button than it display current date and time.

            not sure if this is what you mean, it will return the server time.. If you need the users date and time you'll have to use a server side script

            Code:
            // aspx page
            <asp:Label ID="lblDateTime" runat="server" Text=""></asp:Label>
            <asp:Button ID="btnGetDateTime" runat="server" Text="Get Date and Time" onclick="btnGetDateTime_Click" />
            
            // code behind:
            
            protected void btnGetDateTime_Click(object sender, EventArgs e)
                    {
                        lblDateTime.Text = DateTime.Now.ToString();
                    }
            Signature
            Web 2 Mobile
            The Future of The Web
            {{ DiscussionBoard.errors[6433747].message }}
            • Profile picture of the author dawidtailor
              Originally Posted by webpeon View Post

              not sure if this is what you mean, it will return the server time.. If you need the users date and time you'll have to use a server side script

              Code:
              // aspx page
              <asp:Label ID=&quot;lblDateTime&quot; runat=&quot;server&quot; Text=&quot;&quot;></asp:Label>
              <asp:Button ID=&quot;btnGetDateTime&quot; runat=&quot;server&quot; Text=&quot;Get Date and Time&quot; onclick=&quot;btnGetDateTime_Click&quot; />
              
              // code behind:
              
              protected void btnGetDateTime_Click(object sender, EventArgs e)
                      {
                          lblDateTime.Text = DateTime.Now.ToString();
                      }
              Thanks a lot..... I want this type of coding nice direct I write this code directly in editor so that display the result or not?
              {{ DiscussionBoard.errors[6439149].message }}
  • {{ DiscussionBoard.errors[6426617].message }}
  • Profile picture of the author john-7665
    Thanks mattDroid for 200 tutorials of C#.
    {{ DiscussionBoard.errors[6432751].message }}
  • Profile picture of the author eluminousdev
    I would recommend to go on w3cschools site where you can start with basic and good examples for .net. Its good for the who is beginner in programming language.
    {{ DiscussionBoard.errors[6433183].message }}
  • Profile picture of the author BlueXephos
    Banned
    The best place where you can learn .NET is Microsoft ASP .NET website but there are also a lot of helpful e-books and tutorials on the internet. Good luck!
    {{ DiscussionBoard.errors[6471048].message }}
  • Profile picture of the author John Ayling
    The best way I've found to learn a language is to learn a platform instead. So, if you focus on ASP.NET, Windows Forms, WCF, etc... you can then learn all the ins and outs of that space while learning how to glue it together with C#.

    Don't bother learning VB.NET as C# is much better supported by Microsoft.

    Also, if you want to learn ASP.NET, then you should focus on ASP.NET MVC3 rather than WebForms. MVC is current Microsoft technologies, and when you look at Home : Official Microsoft Site you'll see that the focus is here.

    I've been in this space at a commercial level for 13 years now, and the best way to get into it is to immerse yourself in forums and offline user groups (known as DNUG - dot net user group) - even if you don't understand a word of it at first, you'll find it wil rub off.

    Best of luck, and remember that persistence is key!
    Signature
    Software Marketing & Licensing System for WordPress Plugins, Themes & .NET Software
    >> 72 Hour Special <<
    {{ DiscussionBoard.errors[6475688].message }}
  • Profile picture of the author antac
    Banned
    .NET is important, and inevitable, and at work among us now.
    I'm sure you searching this type of site.
    scribd(dot)com/doc/548611/Dot-Net-Course
    Please check it out.
    {{ DiscussionBoard.errors[6488156].message }}
  • Profile picture of the author TDogger
    If you intend to find a job in a corporate environment and want to build enterprise systems, .NET is a good choice. However, if you want to build and sell web sites, PHP is a much better choice. The majority of dynamic sites on the web run on PHP, including FaceBook and all WordPress sites.
    {{ DiscussionBoard.errors[6488170].message }}
  • Profile picture of the author seokid
    I would recommend to use wrox publication book you can start with basic and good examples for .net. Its good for the who is beginner in programming language.
    {{ DiscussionBoard.errors[6490211].message }}
  • Profile picture of the author afriedl
    Visit my bookstore at AndrewFriedl.com and look at the Murach C# book. It's a great beginner book that will get you up to speed fast.
    {{ DiscussionBoard.errors[6507011].message }}
  • Profile picture of the author tahir100
    Google search will get you loads of free articles and tutorials on .NET
    {{ DiscussionBoard.errors[8050642].message }}

Trending Topics