Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
AnswerRe: Polymorphism through Inheritance Pin
BobJanova21-Apr-11 1:09
BobJanova21-Apr-11 1:09 
AnswerRe: Polymorphism through Inheritance Pin
Wayne Gaylard21-Apr-11 1:22
professionalWayne Gaylard21-Apr-11 1:22 
GeneralRe: Polymorphism through Inheritance Pin
Ankit Rajput21-Apr-11 5:50
Ankit Rajput21-Apr-11 5:50 
GeneralRe: Polymorphism through Inheritance Pin
AspDotNetDev21-Apr-11 7:07
protectorAspDotNetDev21-Apr-11 7:07 
AnswerRe: Polymorphism through Inheritance Pin
Keith Barrow21-Apr-11 1:48
professionalKeith Barrow21-Apr-11 1:48 
AnswerRe: Polymorphism through Inheritance Pin
Prasanta_Prince21-Apr-11 2:20
Prasanta_Prince21-Apr-11 2:20 
GeneralRe: Polymorphism through Inheritance Pin
Ankit Rajput21-Apr-11 5:58
Ankit Rajput21-Apr-11 5:58 
QuestionAjaxupload Pin
dbongs20-Apr-11 23:47
dbongs20-Apr-11 23:47 
new AjaxUpload("#fuCondition", {
action: servicesPath + 'Handlers/FileUpload.ashx?t=0&BRH_ID='+ $("#BRH_ID").val()+"&USR_ID="+ $("#USR_ID").val()+"&DeedOffice="+ $("#DeedOf").val(),
name: 'userfile',
data: {},
autoSubmit: true,
responseType: false,
onChange: function (file, extension) {

$("#fuCondition").hide();
$("#Uploading").show();
},
onSubmit: function (file, extension) {
if (!(extension && /^(rtf|zip)$/.test(extension))) {
alert('Error: file type not allowed.');
return false;
}
this.disable();
},
onComplete: function (file, response) {
$('#file_name').val(file);
if (response.toLowerCase() != 'true') {
$('#status').hide();
setTimeout(3000, 6000);
$("#Uploading").hide();
$("#fuCondition").show();
}
else if (response.toLowerCase() == 'false')
$('#status').html('error!, file not saved');
else
$("#status").html(response);
}
});
How to clicking twice when you are using ajaxupload? and do you avoid it from taking default values of textbox
AnswerRe: Ajaxupload Pin
Pete O'Hanlon21-Apr-11 0:03
mvePete O'Hanlon21-Apr-11 0:03 
GeneralRe: Ajaxupload Pin
dbongs21-Apr-11 0:17
dbongs21-Apr-11 0:17 
GeneralRe: Ajaxupload Pin
Pete O'Hanlon21-Apr-11 0:42
mvePete O'Hanlon21-Apr-11 0:42 
GeneralRe: Ajaxupload Pin
Mycroft Holmes21-Apr-11 0:56
professionalMycroft Holmes21-Apr-11 0:56 
GeneralRe: Ajaxupload Pin
BobJanova21-Apr-11 1:07
BobJanova21-Apr-11 1:07 
GeneralRe: Ajaxupload Pin
#realJSOP21-Apr-11 4:50
mve#realJSOP21-Apr-11 4:50 
GeneralRe: Ajaxupload Pin
dbongs21-Apr-11 2:00
dbongs21-Apr-11 2:00 
GeneralRe: Ajaxupload Pin
Pete O'Hanlon22-Apr-11 9:50
mvePete O'Hanlon22-Apr-11 9:50 
GeneralRe: Ajaxupload Pin
#realJSOP21-Apr-11 4:49
mve#realJSOP21-Apr-11 4:49 
GeneralRe: Ajaxupload Pin
Keith Barrow21-Apr-11 7:10
professionalKeith Barrow21-Apr-11 7:10 
AnswerRe: Ajaxupload Pin
BobJanova21-Apr-11 0:26
BobJanova21-Apr-11 0:26 
GeneralRe: Ajaxupload Pin
dbongs21-Apr-11 0:32
dbongs21-Apr-11 0:32 
Questiontry {} catch {} not working Pin
ShadowUz20-Apr-11 22:59
ShadowUz20-Apr-11 22:59 
AnswerRe: try {} catch {} not working Pin
BobJanova20-Apr-11 23:17
BobJanova20-Apr-11 23:17 
AnswerRe: try {} catch {} not working [modified] Pin
ShadowUz20-Apr-11 23:32
ShadowUz20-Apr-11 23:32 
GeneralRe: try {} catch {} not working Pin
BobJanova21-Apr-11 0:25
BobJanova21-Apr-11 0:25 
AnswerRe: try {} catch {} not working Pin
Wayne Gaylard20-Apr-11 23:27
professionalWayne Gaylard20-Apr-11 23:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.