Are conditional statements in Partial Views a bad practice? For instance, I have a PV that should only render certain markup based on my Model properties.
Are conditional statements in Partial Views a bad practice? For instance, I have a
Share
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.
Depends, if your conditions are
Viewrelated in nature (like your scenario) it’s fine. If you are mixing domain logic and/or validation logic then that should be a cause for concern. You ultimately want to have a good balance of Maintainability, Flexibility and Performance.