WordPress like shortcodes in asp.net pages?

I’m an experienced asp.net developer who has begun developing in php, specifically in wordpress. I’m impressed with the ease of use of shortcodes in wordpress and how simple they are to develop in php. I know you can get similar functionality from user controls in asp.net but they are not as intuitive and simple to use for the end user as shortcodes are. Is there any open source (or commercial) development of a shortcode parsing/rendering engine for asp.net? If not, what would be my best approach in developing this? Thanks in advance for any information or suggestions.

Related posts

Leave a Reply

1 comment

  1. Try ASP.NET Routing, Request Handlers (ashx or web.config-based), WebMethods, or Razor pages. Only the last requires MVC or ASP.NET Web Pages (Razor-formatted cshtml pages).