Click here to Skip to main content
15,883,705 members

Comments by Abhishek Sur (Top 94 by date)

Abhishek Sur 20-Dec-15 14:09pm View    
Something like this :

$(window).bind('beforeunload', function(){
clearCache();
});

function clearCache() {
$.ajax({
url: "/clearCache/delete",
type: "post",
data:{},
success:function(){
console.log('cache deleted');
}//success
}); //ajax
}
Abhishek Sur 19-Dec-15 12:55pm View    
But the code you written is just the Server.MapPath. Can you post the code which reads the file in Excel. Can you check File.Exists on the server path ?

Also Server.MapPath will only get you a disk path if the file is uploaded in server and written to the disk. Have you already written the content of File to the disk ?
Abhishek Sur 31-Oct-12 16:51pm View    
Are you talking about ASCII ?

I mean are you looking for some message converted to a sequence of ascii equivalent of each characters? The question seems to be not understandable. Please assist.
Abhishek Sur 5-Sep-11 15:25pm View    
Why do you want to use it in win32. Any specific reason ? WPF supports Transformation on its core.
Abhishek Sur 31-Aug-11 8:45am View    
Thanks Abhijit... :)