Click here to Skip to main content
15,916,019 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: can anybody help!! Pin
Paul Riley18-Aug-02 10:24
Paul Riley18-Aug-02 10:24 
AnswerRe: can anybody help!! Pin
TigerNinja_22-Aug-02 12:02
TigerNinja_22-Aug-02 12:02 
General".aspx" extensions do not execute Pin
Julien Martin17-Aug-02 6:46
Julien Martin17-Aug-02 6:46 
GeneralRe: ".aspx" extensions do not execute Pin
Nick Parker17-Aug-02 12:55
protectorNick Parker17-Aug-02 12:55 
GeneralRe: ".aspx" extensions do not execute Pin
Richard Deeming19-Aug-02 1:04
mveRichard Deeming19-Aug-02 1:04 
GeneralMore DataGrid issues Pin
afronaut16-Aug-02 21:05
afronaut16-Aug-02 21:05 
GeneralRe: More DataGrid issues Pin
Paul Riley18-Aug-02 10:20
Paul Riley18-Aug-02 10:20 
GeneralWhile Deploy my applan in remote server i am getting ADODB not found Pin
Jude Asis Prabhu16-Aug-02 19:51
Jude Asis Prabhu16-Aug-02 19:51 
After i install the files in remote server, i jsut run thru browser
mean while i am getting this error


Server Error in '/ezei2002net' Application.
--------------------------------------------------------------------------------

File or assembly name ADODB, or one of its dependencies, was not found.
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.IO.FileNotFoundException: File or assembly name ADODB, or one of its dependencies, was not found.

Source Error:

The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:

1. Add a "Debug=true" directive at the top of the file that generated the error. Example:

<%@ Page Language="C#" Debug="true" %>

or:

2) Add the following section to the configuration file of your application:

<configuration>
<system.web>
<compilation debug="true">



Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.

Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'ADODB' could not be loaded.


=== Pre-bind state information ===
LOG: DisplayName = ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
(Fully-specified)
LOG: Appbase = file:///D:/Inetpub/wwwroot/ezei2002net
LOG: Initial PrivatePath = bin
Calling assembly : Ezei2002net, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null.
===

LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (D:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet.config).
LOG: Using machine configuration file from D:\WINNT\Microsoft.NET\Framework\v1.0.3705\config\machine.config.
LOG: Post-policy reference: ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
LOG: Attempting download of new URL file:///D:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/ezei2002net/a78c0475/f3699740/ADODB.DLL.
LOG: Attempting download of new URL file:///D:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/ezei2002net/a78c0475/f3699740/ADODB/ADODB.DLL.
LOG: Attempting download of new URL file:///D:/Inetpub/wwwroot/ezei2002net/bin/ADODB.DLL.
LOG: Attempting download of new URL file:///D:/Inetpub/wwwroot/ezei2002net/bin/ADODB/ADODB.DLL.
LOG: Attempting download of new URL file:///D:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/ezei2002net/a78c0475/f3699740/ADODB.EXE.
LOG: Attempting download of new URL file:///D:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/ezei2002net/a78c0475/f3699740/ADODB/ADODB.EXE.
LOG: Attempting download of new URL file:///D:/Inetpub/wwwroot/ezei2002net/bin/ADODB.EXE.
LOG: Attempting download of new URL file:///D:/Inetpub/wwwroot/ezei2002net/bin/ADODB/ADODB.EXE.



Stack Trace:


[FileNotFoundException: File or assembly name ADODB, or one of its dependencies, was not found.]
Ezei2002net.WebForm1..ctor() +0
ASP.CH_childinfo_aspx..ctor()

[TargetInvocationException: Exception has been thrown by the target of an invocation.]
System.RuntimeType.CreateInstanceImpl(Boolean publicOnly) +0
System.Activator.CreateInstance(Type type, Boolean nonPublic) +66
System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) +277
System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) +109
System.Web.UI.TemplateControlParser.GetCompiledInstance(String virtualPath, String inputFile, HttpContext context) +175

[HttpException (0x80004005): Failed to create page of type 'ASP.CH_childinfo_aspx'.]
System.Web.UI.TemplateControlParser.GetCompiledInstance(String virtualPath, String inputFile, HttpContext context) +349
System.Web.UI.PageParser.GetCompiledPageInstance(String virtualPath, String inputFile, HttpContext context) +43
System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String path) +14
System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig) +174
System.Web.MapHandlerExecutionStep.Execute() +77
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +173

i am struck up in this
if any one know any clues for this
kindly help me
Jude


------------------------------------------
Regards,
Jude Asis Prabhu
Chennai,India.
Email:rjaprabhu@lycos.com
GeneralServer.Execute Issues Capturing resulting HTML from aspx page execution. Pin
Tom G16-Aug-02 10:15
Tom G16-Aug-02 10:15 
GeneralRe: Server.Execute Issues Capturing resulting HTML from aspx page execution. Pin
Tom G1220-Aug-02 15:14
sussTom G1220-Aug-02 15:14 
GeneralCustom Validator Control Pin
afronaut15-Aug-02 13:46
afronaut15-Aug-02 13:46 
QuestionDataGrid Problem? Pin
Pradhip15-Aug-02 12:38
Pradhip15-Aug-02 12:38 
AnswerRe: DataGrid Problem? Pin
TigerNinja_22-Aug-02 12:33
TigerNinja_22-Aug-02 12:33 
QuestionASP/SQL Alphabetical list? Pin
TerrieL15-Aug-02 12:33
TerrieL15-Aug-02 12:33 
AnswerRe: ASP/SQL Alphabetical list? Pin
afronaut16-Aug-02 6:04
afronaut16-Aug-02 6:04 
QuestionWhy XQuery? Pin
Jamie Nordmeyer15-Aug-02 5:38
Jamie Nordmeyer15-Aug-02 5:38 
AnswerRe: Why XQuery? Pin
Paul Watson15-Aug-02 23:32
sitebuilderPaul Watson15-Aug-02 23:32 
GeneralRe: Why XQuery? Pin
Jamie Nordmeyer16-Aug-02 7:34
Jamie Nordmeyer16-Aug-02 7:34 
GeneralASP Wildcard Issue Pin
Robby15-Aug-02 5:37
Robby15-Aug-02 5:37 
GeneralRe: ASP Wildcard Issue Pin
Paul Watson15-Aug-02 23:49
sitebuilderPaul Watson15-Aug-02 23:49 
GeneralURLs of History Entries Pin
jerry0davis14-Aug-02 23:03
jerry0davis14-Aug-02 23:03 
GeneralRe: URLs of History Entries Pin
Jeremy Falcon19-Aug-02 5:31
professionalJeremy Falcon19-Aug-02 5:31 
GeneralRe: URLs of History Entries Pin
jerry0davis19-Aug-02 21:57
jerry0davis19-Aug-02 21:57 
GeneralGood ASP.NET MAtrix resource Pin
Davy Mitchell14-Aug-02 8:51
Davy Mitchell14-Aug-02 8:51 
GeneralISAPI file reading.. Pin
code dope13-Aug-02 22:59
code dope13-Aug-02 22:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.