Monday, February 18, 2013

To make a user controls property visible in aspx intellisense and properties window add below attributes
 
[Browsable(true)]
       
[EditorBrowsable(EditorBrowsableState.Always)]

       
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]

       
[Bindable(true)]

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...