1
Answer

How to Webpart Properties

Vishal Singh

Vishal Singh

8y
270
1
How to add webpart properties in visual webpart using visual studio?
Answers (1)
1
Ramesh Palaniappan
NA 13.2k 722.6k 8y
  1. [WebBrowsable(true),
  2. WebDisplayName("ListName"),
  3. WebDescription("ThisAcceptstextInput"),
  4. Personalizable(PersonalizationScope.Shared),
  5. Category("WarrantyMessages")]
  6. publicstringlistName{get;set;}
above code will add webpart property name "List Name"
Accepted