Visual studio web app - is WIX good to help build a web app

iqworks Information Quality Works 316 Reputation points
2025-02-12T00:55:04.9666667+00:00

Hi, I want to build an MVC razor page web app. I am thinking it might be good to use something like WIX or word press to take advantage of some of there tools to create look and feel aspects to it.

 

 I am wondering if this is a good idea?

 

 Thanks for any advice or suggestions

 

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,785 questions
{count} votes

4 answers

Sort by: Most helpful
  1. ALIF B EKRAM 5 Reputation points
    2025-02-12T07:31:55.75+00:00

    Surely!

    Wix:

    • Pros: Easy to use, great templates, quick setup.
    • Cons: Limited backend customization, potential performance issues.

    WordPress:

    • Pros: Highly customizable, large community support.
    • Cons: Learning curve, requires regular maintenance.

    MVC Razor Pages:

    • Best for complex, customizable web apps with full control over backend and frontend.

    Recommendation: Use Wix or WordPress for quick, visually appealing setups. Use MVC Razor Pages for robust, scalable solutions.

    1 person found this answer helpful.
    0 comments No comments

  2. Ping Ni-MSFT 4,890 Reputation points Microsoft Vendor
    2025-02-12T07:22:28.46+00:00

    Hi @iqworks Information Quality Works,

    Wix and WordPress are built for full-stack website development, not for exporting themes or UI components to be used in a custom ASP.NET Core app which will cause it is complex to integrated with ASP.NET Core.

    I suggest you can use UI framework to design and build a ASP.NET Core application. For example, Bootstrap.

    Besides, MVC and Razor Pages are different architectures, here are some tutorials which could help you get started:

    Get started with ASP.NET Core MVC

    Get started with Razor Pages in ASP.NET Core


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best regards,
    Rena

    0 comments No comments

  3. Bruce (SqlWork.com) 71,586 Reputation points
    2025-02-12T18:24:07.13+00:00

    WIX and Wordpress are alternatives to MVC pages. they are not designers.

    also In general sample templates (or designer output) take a bit of work to convert to razor page format. you need to factor out the layout markup, add razor page attributes, etc.

    as suggested, the easiest approach is using a CSS framework like bootstrap, material or tailwind.

    https://getbootstrap.com

    https://materializecss.com

    https://tailwindcss.com

    0 comments No comments

  4. iqworks Information Quality Works 316 Reputation points
    2025-02-13T16:41:17.96+00:00

    Hi everyone. All of your answers contributed to my new insight about this issue.

    From your contributions, i have decided to go with this:

    1 - .Net Core 8.
    2 - MVC and Razor pages.
    3 - Bootstrap and angular for page manipulation.
    4 - EF and Linq for data management.

    How does that sound to everyone?

    Thanks for your suggestions and advice.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.