This is a discussion on Reset IIS within the ASP and ASP.NET Programming forums, part of the Web Development category; Hi Guys, Could anyone please suggest me to block the IIS Reset when we delete a folder through .Net 2005. ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi Guys, Could anyone please suggest me to block the IIS Reset when we delete a folder through .Net 2005. Actually the IIS is getting restarted when i am deleting a folder through .Net. I want to block it.I am awaiting for ur reply. Thanks in advance. |
| Sponsored Links |
| |||
| hey krishna, I have tested in my .Net 2005 application(.NET FrameWork 2.0) and with windows XP and Windows 2003 server. Here i am not getting any IIS restart. Below is the code,just try it... private void TestIIS_Load(object sender, EventArgs e) { Directory.CreateDirectory(IIsConstants.DefaultRoot Directory + "Test"); } private void button1_Click(object sender, EventArgs e) { Directory.Delete(IIsConstants.DefaultRootDirectory + "Test"); } The code sample is about Creating a folder in IIS and deleting the Directory. I have tested by deleting folders and subfolder in my Website also, but i have no issues... Could you give me the following details about, IIS version? Version of .Net Framework? Operating System? and give me your code so that i can try to help you ![]()
__________________ H2O Without us, no one can survive.. |
| |||
| i have added the below line in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONF IG\web.config for monitoring the IIS reset error <add name="Application Lifetime Events Default" eventName="Application Lifetime Events" provider="EventLogProvider" profile="Default" minInstances="1" maxLimit="Infinite" minInterval="00:01:00" custom="" /> still no event log for deleting the folder Last edited by kingmaker : 08-10-2007 at 05:18 AM. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/asp-asp-net-programming/3268-reset-iis.html | |||
| Posted By | For | Type | Date |
| Related Information for tag: iis | This thread | Refback | 09-16-2007 06:29 PM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Reset Button Problem | velhari | PHP Programming | 4 | 12-14-2007 07:06 AM |
| How can I reset the value of form fields if the page is revisted? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 12-05-2007 04:48 AM |
| How do I use my own graphic button to reset all the text fields in a form? | Pvinothkumar | HTML, CSS and Javascript Coding Techniques | 1 | 11-02-2007 12:02 AM |
| How to Soft Reset Windows Mobile 5.0 ? | theone | Windows Mobile | 0 | 07-17-2007 03:42 AM |