Tagged Questions
0
votes
2answers
175 views
Does web part property validation only work for visual web parts?
Suppose I define a web part property like this:
private string _myString = "default value";
[WebBrowsable(true),
WebDisplayName("My string"),
WebDescription("A simple bit of text to ...
1
vote
4answers
775 views
ASP.Net Validators part of Custom control in WebPart
Custom control has 6 buttons in which 5 of them have CausesValidation = false, the one remaining button ( lets calls it as "SUBMIT") which cause validation.
Edit: Validators and Submit button are ...
0
votes
0answers
75 views
how to validate custom web part property? [duplicate]
Possible Duplicate:
How to validate Web Part property value?
below is a custom prop and a code that i am using for my custom web part, my question is, how to validate a custom web part and ...
5
votes
5answers
2k views
How to validate Web Part property value?
A custom web part has custom web part properties. I would like to validate with custom server side code when user changes property value (or when properties are bing saved). Is that possible? Can I ...