Putting project in new directory

cfisher440

Well-known member
Joined
Oct 11, 2005
Messages
73
Programming Experience
1-3
My project right now is in a directory c:\inetpub\wwwroot\test\ops\requests
It runs fine from there.
I want to move it to
c:\inetput\wwwroot\dev\ops\requests

I made the new folder (virtual directory) and copied over the compiled project, but when I go to open the web page in the browser I recieve

Unspecified error

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Unspecified error

Source Error:
Line 369: lblDate.Text = Now() 'Sets the date requested for them.
Line 370:
Line 371: DAMGR.Fill(DsMgrs1) ' fills the Manager Dataset
Line 372:
Line 373: DDLManager.DataBind() ' Binds the Manager List Drop Down to the Manager Dataset


Stack Trace:

[OleDbException (0x80004005): Unspecified error] System.Data.OleDb.OleDbConnection.ProcessResults(Int32 hr) System.Data.OleDb.OleDbConnection.InitializeProvider() System.Data.OleDb.OleDbConnection.Open() System.Data.Common.DbDataAdapter.QuietOpen(IDbConnection connection, ConnectionState& originalState) System.Data.Common.DbDataAdapter.FillFromCommand(Object data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) SoftwareRequest.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\test\ops\Request\Request.aspx.vb:371 System.Web.UI.Control.OnLoad(EventArgs e) System.Web.UI.Control.LoadRecursive() System.Web.UI.Page.ProcessRequestMain()

There must be something in this program set that is still pointing to the old location at c:\inetput\wwwroot\tests\ops\requests
I need it to point to
c:\inetpub\wwwroot\dev\ops\requests

Any help would be greatly appreciated.
 
Back
Top