Wordpress, how are shortcodes on asp.net pages?

I am an experienced asp.net developer who started to develop in php, especially in Wordpress. I am impressed with the ease of using shortcodes in wordpress and how easy they are in php. I know that you can get similar functionality from user controls in asp.net, but they are not as intuitive and easy to use for the end user as shortcodes. Is there any open (or commercial) development of a shortcode syntax coding / rendering engine for asp.net? If not, what will be my best approach in developing this? Thanks in advance for any information or suggestions.

+4
source share
1 answer

Try ASP.NET routing, request handlers (based on ashx or web.config), WebMethods, or Razor pages. Only the latter requires MVC or ASP.NET web pages (cshtml pages in Razor format).

+1
source

Source: https://habr.com/ru/post/1344379/


All Articles