Using Umbraco, which is quicker to load on a page…
XSLT Macro or a .NET user Control (via an Umbraco Macro).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on what you are trying to achieve, and how you go about it. A well-written XSLT macro will probably perform better than a badly-written .NET macro, and vice versa. XSLT is fast and elegant when manipulating XML for the display of data, but quickly gets unwieldy when trying to deal with user interaction, for example. A rule of thumb that I use is that if you are just displaying data then use XSLT, but if you want some user interaction then use .NET.