I have a checkbox to send mails in the view. But when I submitting the form all mails are send instead of the selected checkbox. How can I identify that selected one in my mvc application?
Answers (2)
1
- [WebBrowsable(true),
- WebDisplayName("ListName"),
- WebDescription("ThisAcceptstextInput"),
- Personalizable(PersonalizationScope.Shared),
- Category("WarrantyMessages")]
- publicstringlistName{get;set;}
above code will add webpart property name "List Name"
Accepted