or
body ,form *
{
font-family: Wingdings 3!important;
font-size: 10px!important;
}
protected
void radBtnSaveQuery_Click(object sender, EventArgs e)
{
some code.......
}
I am looking for that some code...
<
asp:CustomValidator
ID
=
"rfvFileUpload"
ClientValidationFunction
=
"validateFileUpload"
runat
=
"server"
ErrorMessage
=
"File Required"
/>
function
validateFileUpload(sender, args) {
var
uploadObject = $find(
"<%= RadAsyncUpload1.ClientID %>"
);
args.IsValid = uploadObject.getUploadedFiles().length != 0;
}