Webmaster Quit
My web site is down and I am not sure what to do. I am a mainframe programmer and have no .net, xml or asp. I have a message from the host service that says : Your web site redirects to URL http://brokersinfonet.com/BIN/index.asp
The "BIN" folder is not visible because it is reserved for ASP.NET
components. The Server automatically protects the folder and any file under "bin" folder is not visible.
View Replies
I know in some programming languages you can use the "break"-statement to quit a for-loop. Is there such a statement that that I could use in asp using vbscript?
View Replies
View Related
I am trying to create MS access file (.mdb) from the data set with the following code. Every thing is working fine. But I found the MSACCESS.EXE is still running in the Task Manager. When ever I run this program new MSACCESS.EXE is added to task manager.
I could not kill the process after I created the file. I tried all the possible ways and checked with user forums, news group and MSDN, but no luck.
Access.Application accessData;
accessData = new Access.ApplicationClass();
accessData.NewCurrentDatabase("C:TestTest.mdb");
accessData.ImportXML("C:TestTest.xml",Access.AcImportXMLOption.acStructureAndData);
// Quit Access and clean up.
accessData.CloseCurrentDatabase();
accessData.Quit(Access.AcQuitOption.acQuitSaveNone );
Marshal.ReleaseComObject(accessData);
accessData = null;
View Replies
View Related