Restrict to create the temp files
-
Hi I have an asp.net application. whenever i compile or run my application it's create extra .temp files, then i have to delete that files again and again. Would you please tell me the reason why it is creating this file and how can i restrict this.
Pankaj
-
Hi I have an asp.net application. whenever i compile or run my application it's create extra .temp files, then i have to delete that files again and again. Would you please tell me the reason why it is creating this file and how can i restrict this.
Pankaj
asp.net has to compile your code to run it (creating dll of your files) and then it can run the app you can try to pre compile your app this might help Please tell me if I am wrong
-
Hi I have an asp.net application. whenever i compile or run my application it's create extra .temp files, then i have to delete that files again and again. Would you please tell me the reason why it is creating this file and how can i restrict this.
Pankaj
basically temp files are created in C:\Windows\Temp and it contains file inforamtion about all the web pages that the browser opens, well i am anot very sure whether you can really restrict this from happening. One way out is to go to Tools->Internet Options and go to Temporary Internet Files and delete all temp files from there or write a simple code in ur web app to delete those files on the exit of the application automatically.
-
basically temp files are created in C:\Windows\Temp and it contains file inforamtion about all the web pages that the browser opens, well i am anot very sure whether you can really restrict this from happening. One way out is to go to Tools->Internet Options and go to Temporary Internet Files and delete all temp files from there or write a simple code in ur web app to delete those files on the exit of the application automatically.
actually when i compile the application it's create the temp files and add into the solution.
Pankaj