Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. If You Had It To Do Again...

If You Had It To Do Again...

Scheduled Pinned Locked Moved The Lounge
csharpphpvisual-studioadobehosting
28 Posts 12 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Roger Wright

    Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

    K Offline
    K Offline
    KarstenK
    wrote on last edited by
    #8

    I prefer using notepad++ (a simple word processor) instead of some Microsoft tools. :~

    Press F1 for help or google it. Greetings from Germany

    B 1 Reply Last reply
    0
    • M Mark_Wallace

      If it's already half-done in wordpress, why triple your pain?

      I wanna be a eunuchs developer! Pass me a bread knife!

      B Offline
      B Offline
      Brady Kelly
      wrote on last edited by
      #9

      Only a little less than half done with Umbraco, and there's no PHP! :-D

      Follow my adventures with .NET Core at my new blog, Erisia Information Services.

      1 Reply Last reply
      0
      • M Mark_Wallace

        QBasic, I think.

        I wanna be a eunuchs developer! Pass me a bread knife!

        B Offline
        B Offline
        Brady Kelly
        wrote on last edited by
        #10

        Funny you should mention that, because now there is now a new IDE to develop Android apps in pseudo-VB.NET.

        Follow my adventures with .NET Core at my new blog, Erisia Information Services.

        P C M 3 Replies Last reply
        0
        • R Roger Wright

          Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

          P Offline
          P Offline
          Phil Martin
          wrote on last edited by
          #11

          It all comes down to what you need, as usual. If it is just to display some marketing content with a few forms to get some customers in contact - wordpress all the way. There's loads of templates out there, and if you can't find one that fits you can find people that produce wordpress templates for you for very small amounts of money. WordPress is all yucky, and you'll need to take a shower afterwards, but you'll be up and going so quickly with a pretty great result. I inherited the management of a WordPress site that made use of the Advanced Custom Fields plugin. You can attach any sort of fields to any post type (blog, page etc). It made getting a UI to edit content so simple, and the backend php was a breeze to copy and paste to get going. Each time I tinker with it I mentally recoil in horror at just how much boilerplate I'd have to write to get the same effect in asp.net MVC. If you're after something a bit less one-size-fits-all, I'd go for a static site generator. Theres LOADS of them out there. Set up your templates, content markdown, run a command, and out pops regular plain html read to be statically served. But for a complete web app - I can't go past asp.net. I love the debugging experience. Node in vscode is almost as nice, but I'm just not as familiar with it.

          J R 2 Replies Last reply
          0
          • B Brady Kelly

            Funny you should mention that, because now there is now a new IDE to develop Android apps in pseudo-VB.NET.

            Follow my adventures with .NET Core at my new blog, Erisia Information Services.

            P Offline
            P Offline
            Phil Martin
            wrote on last edited by
            #12

            It's been around for a few years at least. And it's pretty amazing. It's not going to be able to write every single type of app out there, but it certainly does exactly what it says it does.

            1 Reply Last reply
            0
            • R Roger Wright

              Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

              M Offline
              M Offline
              Marc Clifton
              wrote on last edited by
              #13

              While I usually have a strong opinion one way or the other, in this case, it depends. If I'm doing a basically static site, WordPress, SquareSpace, etc, are great for putting together something that looks decent. If it's a small site I'm building from scratch that requires a database, business logic, etc., then I use C#/.NET and my own server code (I don't even tie in to IIS.) So that's a partial "Microsoft tools." I haven't needed to use EF, Razor, ASP.NET, because I'm not very fond of them, but since the rest of the Microsoft world goes one of those routes, I end up having to use them occasionally. Marc

              Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

              B R 2 Replies Last reply
              0
              • B Brady Kelly

                Funny you should mention that, because now there is now a new IDE to develop Android apps in pseudo-VB.NET.

                Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                C Offline
                C Offline
                Chris C B
                wrote on last edited by
                #14

                Write for Android without squirly brackets? Has to be a winner! :laugh:

                B 1 Reply Last reply
                0
                • B Brady Kelly

                  Funny you should mention that, because now there is now a new IDE to develop Android apps in pseudo-VB.NET.

                  Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                  M Offline
                  M Offline
                  Mark_Wallace
                  wrote on last edited by
                  #15

                  Maybe I should be ashamed, but I actually like the idea!

                  I wanna be a eunuchs developer! Pass me a bread knife!

                  1 Reply Last reply
                  0
                  • C Chris C B

                    Write for Android without squirly brackets? Has to be a winner! :laugh:

                    B Offline
                    B Offline
                    Brady Kelly
                    wrote on last edited by
                    #16

                    Now you show some respect for curly braces[1], young man. And mind you place the opening one on a new damned line! :mad: [1] curly is actually redundant here.

                    Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                    1 Reply Last reply
                    0
                    • R Roger Wright

                      Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

                      B Offline
                      B Offline
                      Brady Kelly
                      wrote on last edited by
                      #17

                      Have you tried Python's Django? Quickest damned web site I've even seen, and surprised nobody's mentioned it. The longest task was introducing myself to PostgreSQL.

                      Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                      R 1 Reply Last reply
                      0
                      • P Phil Martin

                        It all comes down to what you need, as usual. If it is just to display some marketing content with a few forms to get some customers in contact - wordpress all the way. There's loads of templates out there, and if you can't find one that fits you can find people that produce wordpress templates for you for very small amounts of money. WordPress is all yucky, and you'll need to take a shower afterwards, but you'll be up and going so quickly with a pretty great result. I inherited the management of a WordPress site that made use of the Advanced Custom Fields plugin. You can attach any sort of fields to any post type (blog, page etc). It made getting a UI to edit content so simple, and the backend php was a breeze to copy and paste to get going. Each time I tinker with it I mentally recoil in horror at just how much boilerplate I'd have to write to get the same effect in asp.net MVC. If you're after something a bit less one-size-fits-all, I'd go for a static site generator. Theres LOADS of them out there. Set up your templates, content markdown, run a command, and out pops regular plain html read to be statically served. But for a complete web app - I can't go past asp.net. I love the debugging experience. Node in vscode is almost as nice, but I'm just not as familiar with it.

                        J Offline
                        J Offline
                        Jeremy Falcon
                        wrote on last edited by
                        #18

                        +5 for the sensible answer.

                        Jeremy Falcon

                        1 Reply Last reply
                        0
                        • R Roger Wright

                          Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

                          J Offline
                          J Offline
                          Jeremy Falcon
                          wrote on last edited by
                          #19

                          It really depends on how much the business is willing to spend on it (time/money wise).

                          Jeremy Falcon

                          R 1 Reply Last reply
                          0
                          • R Roger Wright

                            Would you develop a website using Microsoft tools, with all the incredible learning curve and expense? Or would you just go the easy - but effective - route and use the WordPress solution your client's hosting provider offers as a development platform? I've got the Microsoft tools in Visual Studio, and I've got the Adobe tools in the Creative Suite, and I'm not too fond of either. I can use them, but it's a huge effort, usually on my own time, to get up to speed and fairly proficient after a long break. My new employer needs a website that works - it's currently crippled with almost no functionality - and I'm the only one to do it. The current site was done with WordPress, but never completed. And some of their suppliers offer APIs to link with their online ordering systems to make sales on behalf of the affiliate members. Most of those are written using WordPress, so I'm going to have to deal with that sometime... Given that there's going to be a huge learning curve for me to come up to speed on modern versions of any of these platforms, which would you recommend that I choose for my employer's new website? Will Rogers never met me.

                            abmvA Offline
                            abmvA Offline
                            abmv
                            wrote on last edited by
                            #20

                            Outsource...and relax

                            Caveat Emptor. "Progress doesn't come from early risers – progress is made by lazy men looking for easier ways to do things." Lazarus Long

                            We are in the beginning of a mass extinction. - Greta Thunberg

                            1 Reply Last reply
                            0
                            • K KarstenK

                              I prefer using notepad++ (a simple word processor) instead of some Microsoft tools. :~

                              Press F1 for help or google it. Greetings from Germany

                              B Offline
                              B Offline
                              Brady Kelly
                              wrote on last edited by
                              #21

                              VS Code is getting very good as well. Very extension based, to adapt to your language and style.

                              Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                              1 Reply Last reply
                              0
                              • M Marc Clifton

                                While I usually have a strong opinion one way or the other, in this case, it depends. If I'm doing a basically static site, WordPress, SquareSpace, etc, are great for putting together something that looks decent. If it's a small site I'm building from scratch that requires a database, business logic, etc., then I use C#/.NET and my own server code (I don't even tie in to IIS.) So that's a partial "Microsoft tools." I haven't needed to use EF, Razor, ASP.NET, because I'm not very fond of them, but since the rest of the Microsoft world goes one of those routes, I end up having to use them occasionally. Marc

                                Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

                                B Offline
                                B Offline
                                Brady Kelly
                                wrote on last edited by
                                #22

                                These days I only use Razor to render my Angular templates. I do that to leverage the Data Annotations metadata, like 'Display Name', or 'DataType', etc. The data goes straight to the Angular module from a Web API.

                                Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                                1 Reply Last reply
                                0
                                • M Mark_Wallace

                                  If it's already half-done in wordpress, why triple your pain?

                                  I wanna be a eunuchs developer! Pass me a bread knife!

                                  R Offline
                                  R Offline
                                  Roger Wright
                                  wrote on last edited by
                                  #23

                                  At this point, it's far less than half done. There's a front page with pictures and that's about it! Will Rogers never met me.

                                  1 Reply Last reply
                                  0
                                  • M Marc Clifton

                                    While I usually have a strong opinion one way or the other, in this case, it depends. If I'm doing a basically static site, WordPress, SquareSpace, etc, are great for putting together something that looks decent. If it's a small site I'm building from scratch that requires a database, business logic, etc., then I use C#/.NET and my own server code (I don't even tie in to IIS.) So that's a partial "Microsoft tools." I haven't needed to use EF, Razor, ASP.NET, because I'm not very fond of them, but since the rest of the Microsoft world goes one of those routes, I end up having to use them occasionally. Marc

                                    Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

                                    R Offline
                                    R Offline
                                    Roger Wright
                                    wrote on last edited by
                                    #24

                                    The owner is virtually computer illiterate, but has grandiose dreams. It's a gun shop, and the way that business works, there are a half dozen or so large distributors that the manufacturers sell to, and small shops have to get their stock from those dealers. At least one of them offers a direct sales solution for dealers to integrate into their individual websites; it displays that distributor's products, accepts orders and payments from online customers, then ships the product to the local dealer for background checks and final tender to the local customer. I think that's a great solution, but it's going to create a need for some detailed integration, and I suspect I'll want to use whatever technology the distributor uses for integration ease. But the other distributors don't all carry the same product lines, and don't offer a prebuilt solution we can hook into, so presenting their products will require a bunch of work. Then there's the in-store inventory, which someone will have to photograph and maintain in the online catalog... I don't have much experience with WordPress or other quick and dirty solutions, but I doubt very much that any of them can handle much in the way of complexity. In fact, thinking about it since my first post, I'm leaning toward trying a MVC approach, with a different model for each source of product, including the store stock as a separate vendor. Scary. I was hoping this would be a simple thing, especially since I was hired to sell and repair guns. :~ Will Rogers never met me.

                                    M 1 Reply Last reply
                                    0
                                    • B Brady Kelly

                                      Have you tried Python's Django? Quickest damned web site I've even seen, and surprised nobody's mentioned it. The longest task was introducing myself to PostgreSQL.

                                      Follow my adventures with .NET Core at my new blog, Erisia Information Services.

                                      R Offline
                                      R Offline
                                      Roger Wright
                                      wrote on last edited by
                                      #25

                                      Never heard of it before, Brady, but it does look interesting! Thanks for the suggestion. :-D Will Rogers never met me.

                                      1 Reply Last reply
                                      0
                                      • J Jeremy Falcon

                                        It really depends on how much the business is willing to spend on it (time/money wise).

                                        Jeremy Falcon

                                        R Offline
                                        R Offline
                                        Roger Wright
                                        wrote on last edited by
                                        #26

                                        The company is willing and able to spend very little money, but it can spend as much time as it takes to get it done. I get a very tiny wage for sales and gunsmithing, and I'm expected to get this working in my 'spare' time. On the flip side, once it's working I'll be splitting the net with the company, so it's in my best interest to get it running soon. :-D Will Rogers never met me.

                                        1 Reply Last reply
                                        0
                                        • P Phil Martin

                                          It all comes down to what you need, as usual. If it is just to display some marketing content with a few forms to get some customers in contact - wordpress all the way. There's loads of templates out there, and if you can't find one that fits you can find people that produce wordpress templates for you for very small amounts of money. WordPress is all yucky, and you'll need to take a shower afterwards, but you'll be up and going so quickly with a pretty great result. I inherited the management of a WordPress site that made use of the Advanced Custom Fields plugin. You can attach any sort of fields to any post type (blog, page etc). It made getting a UI to edit content so simple, and the backend php was a breeze to copy and paste to get going. Each time I tinker with it I mentally recoil in horror at just how much boilerplate I'd have to write to get the same effect in asp.net MVC. If you're after something a bit less one-size-fits-all, I'd go for a static site generator. Theres LOADS of them out there. Set up your templates, content markdown, run a command, and out pops regular plain html read to be statically served. But for a complete web app - I can't go past asp.net. I love the debugging experience. Node in vscode is almost as nice, but I'm just not as familiar with it.

                                          R Offline
                                          R Offline
                                          Roger Wright
                                          wrote on last edited by
                                          #27

                                          The owner wants a store front, unfortunately, drawing from multiple suppliers' online catalogs. I'm guessing that WordPress isn't going to be up to the challenge, other than to present a home page with general information and links to our Store. The Store itself will have to be hand tailored, probably using ASP.Net, since that's the only tool I am familiar with and have on hand. I've got Dreamweaver, too, but I always feel I need to wash my hands after I open it. X| Will Rogers never met me.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups