I am using this snippet :
http://www.aspsnippets.com/Articles/Implement-Uploadify-jQuery-Plugin-in-ASPNet.aspx
Now there in handler at this line :
tempPath = System.Configuration.ConfigurationManager.AppSettings["FolderPath"];
I dont want to read path from web.config , instead i would like to pass the parameter while calling this handler in jquery , at this point :
$(window).load(
function() {
$("#<%=FileUpload1.ClientID %>").fileUpload({
'uploader': 'scripts/uploader.swf',
'cancelImg': 'images/cancel.png',
'buttonText': 'Browse Files',
'script': 'Upload.ashx',
'folder': 'uploads',
'fileDesc': 'Image Files',
'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
'multi': true,
'auto': true
});
}
);
I want to pass the url from here to the handler.