473,385 Members | 1,925 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

HELP asp.net 1.1 to asp.net 2.0 conversion problem

I was able to convert our web application using the web project option
(still have a lot of problem when converting to a vs2005 web site). It run
without a problem on my machine. I deployed to our test environment and I
got the following errors:

Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web,
Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or
one of its dependencies. The system cannot find the file specified.

Any help is appreciated

Bonggoy
Apr 12 '06 #1
7 1379
Make sure the ASP.NET version is selected as 2.0 in IIS. (Right click
virtual directory -> Properties -> ASP.NET tab)

"Bonggoy Cruz" <bo**********@hotmail.com> wrote in message
news:O1**************@TK2MSFTNGP05.phx.gbl...
I was able to convert our web application using the web project option
(still have a lot of problem when converting to a vs2005 web site). It run
without a problem on my machine. I deployed to our test environment and I
got the following errors:

Parser Error Message: Could not load file or assembly
'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral,
PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system
cannot find the file specified.

Any help is appreciated

Bonggoy

Apr 12 '06 #2
How did you deploy? It seems you are missing some references to the crystal
report libraries.

VS 2005 solutions have a different way of deploying comparing to VS 2003
solutions.
In VS 2005 you can:
-Create a web setup project
-Deploy all your source code (also the .cs)
-Precompile your website using the build menu -> Publish website.

You can make sure a copy of your reference is added to the bin directory by
setting the propery "Copy local" of the reference to true.

Good luck.

"Bonggoy Cruz" wrote:
I was able to convert our web application using the web project option
(still have a lot of problem when converting to a vs2005 web site). It run
without a problem on my machine. I deployed to our test environment and I
got the following errors:

Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web,
Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or
one of its dependencies. The system cannot find the file specified.

Any help is appreciated

Bonggoy

Apr 13 '06 #3
That helped with the Crystal problem. Now I am getting this 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.IO.FileNotFoundException: Could not load file or
assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' or one of its dependencies. The system
cannot find the file specified.

Isn't Microsoft.VisualBasic referenced automatically?

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote in
message news:06**********************************@microsof t.com...
How did you deploy? It seems you are missing some references to the
crystal
report libraries.

VS 2005 solutions have a different way of deploying comparing to VS 2003
solutions.
In VS 2005 you can:
-Create a web setup project
-Deploy all your source code (also the .cs)
-Precompile your website using the build menu -> Publish website.

You can make sure a copy of your reference is added to the bin directory
by
setting the propery "Copy local" of the reference to true.

Good luck.

"Bonggoy Cruz" wrote:
I was able to convert our web application using the web project option
(still have a lot of problem when converting to a vs2005 web site). It
run
without a problem on my machine. I deployed to our test environment and
I
got the following errors:

Parser Error Message: Could not load file or assembly
'CrystalDecisions.Web,
Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or
one of its dependencies. The system cannot find the file specified.

Any help is appreciated

Bonggoy

Apr 13 '06 #4
Could you post the part of the web.config containing the references?

"Bonggoy Cruz" wrote:
That helped with the Crystal problem. Now I am getting this 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.IO.FileNotFoundException: Could not load file or
assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' or one of its dependencies. The system
cannot find the file specified.

Isn't Microsoft.VisualBasic referenced automatically?

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote in
message news:06**********************************@microsof t.com...
How did you deploy? It seems you are missing some references to the
crystal
report libraries.

VS 2005 solutions have a different way of deploying comparing to VS 2003
solutions.
In VS 2005 you can:
-Create a web setup project
-Deploy all your source code (also the .cs)
-Precompile your website using the build menu -> Publish website.

You can make sure a copy of your reference is added to the bin directory
by
setting the propery "Copy local" of the reference to true.

Good luck.

"Bonggoy Cruz" wrote:
I was able to convert our web application using the web project option
(still have a lot of problem when converting to a vs2005 web site). It
run
without a problem on my machine. I deployed to our test environment and
I
got the following errors:

Parser Error Message: Could not load file or assembly
'CrystalDecisions.Web,
Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or
one of its dependencies. The system cannot find the file specified.

Any help is appreciated

Bonggoy


Apr 13 '06 #5
That's what confuses me. They are no reference in my web.config file.

"Dustin van de Sande [MCAD]"
<Du******************@discussions.microsoft.com> wrote in message
news:EC**********************************@microsof t.com...
Could you post the part of the web.config containing the references?

"Bonggoy Cruz" wrote:
That helped with the Crystal problem. Now I am getting this 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.IO.FileNotFoundException: Could not load file
or
assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' or one of its dependencies. The system
cannot find the file specified.

Isn't Microsoft.VisualBasic referenced automatically?

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote
in
message news:06**********************************@microsof t.com...
> How did you deploy? It seems you are missing some references to the
> crystal
> report libraries.
>
> VS 2005 solutions have a different way of deploying comparing to VS
> 2003
> solutions.
> In VS 2005 you can:
> -Create a web setup project
> -Deploy all your source code (also the .cs)
> -Precompile your website using the build menu -> Publish website.
>
> You can make sure a copy of your reference is added to the bin
> directory
> by
> setting the propery "Copy local" of the reference to true.
>
> Good luck.
>
> "Bonggoy Cruz" wrote:
>
>> I was able to convert our web application using the web project option
>> (still have a lot of problem when converting to a vs2005 web site).
>> It
>> run
>> without a problem on my machine. I deployed to our test environment
>> and
>> I
>> got the following errors:
>>
>> Parser Error Message: Could not load file or assembly
>> 'CrystalDecisions.Web,
>> Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304'
>> or
>> one of its dependencies. The system cannot find the file specified.
>>
>> Any help is appreciated
>>
>> Bonggoy
>>
>>
>>


Apr 13 '06 #6
I am also getting the following:

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' could not be loaded.

=== Pre-bind state information ===
LOG: User = [***ADMIN USER***]
LOG: DisplayName = Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f
(Fully-specified)
LOG: Appbase = file:///E:/inetpub/wwwroot/2/
LOG: Initial PrivatePath = E:\inetpub\wwwroot\2\bin
Calling assembly : 2, Version=1.0.2293.22967, Culture=neutral,
PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: E:\inetpub\wwwroot\2\web.config
LOG: Using host configuration file:
\\?\c:\windows\microsoft.net\framework\v2.0.50727\ aspnet.config
LOG: Using machine configuration file from
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\conf ig\machine.config.
LOG: Post-policy reference: Microsoft.VisualBasic, Version=2.0.0.1,
Culture=neutral, PublicKeyToken=6315780d5082271f
LOG: The same bind was seen before, and was failed with hr = 0x80070002.

"Bonggoy Cruz" <bo**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
That's what confuses me. They are no reference in my web.config file.

"Dustin van de Sande [MCAD]"
<Du******************@discussions.microsoft.com> wrote in message
news:EC**********************************@microsof t.com...
Could you post the part of the web.config containing the references?

"Bonggoy Cruz" wrote:
That helped with the Crystal problem. Now I am getting this 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.IO.FileNotFoundException: Could not load file
or
assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' or one of its dependencies. The system
cannot find the file specified.

Isn't Microsoft.VisualBasic referenced automatically?

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote
in
message news:06**********************************@microsof t.com...
> How did you deploy? It seems you are missing some references to the
> crystal
> report libraries.
>
> VS 2005 solutions have a different way of deploying comparing to VS
> 2003
> solutions.
> In VS 2005 you can:
> -Create a web setup project
> -Deploy all your source code (also the .cs)
> -Precompile your website using the build menu -> Publish website.
>
> You can make sure a copy of your reference is added to the bin
> directory
> by
> setting the propery "Copy local" of the reference to true.
>
> Good luck.
>
> "Bonggoy Cruz" wrote:
>
>> I was able to convert our web application using the web project
>> option
>> (still have a lot of problem when converting to a vs2005 web site).
>> It
>> run
>> without a problem on my machine. I deployed to our test environment
>> and
>> I
>> got the following errors:
>>
>> Parser Error Message: Could not load file or assembly
>> 'CrystalDecisions.Web,
>> Version=10.2.3600.0, Culture=neutral,
>> PublicKeyToken=692fbea5521e1304' or
>> one of its dependencies. The system cannot find the file specified.
>>
>> Any help is appreciated
>>
>> Bonggoy
>>
>>
>>


Apr 13 '06 #7
Looking at the line:

LOG: The same bind was seen before, and was failed with hr = 0x80070002.

It seems it cannot find the file specified.

You can first try to drop your references and then add them again. Then a
rebuild all.
If that doesn't work, try to install the .NET framework 2.0 again.

"Bonggoy Cruz" wrote:
I am also getting the following:

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' could not be loaded.

=== Pre-bind state information ===
LOG: User = [***ADMIN USER***]
LOG: DisplayName = Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f
(Fully-specified)
LOG: Appbase = file:///E:/inetpub/wwwroot/2/
LOG: Initial PrivatePath = E:\inetpub\wwwroot\2\bin
Calling assembly : 2, Version=1.0.2293.22967, Culture=neutral,
PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: E:\inetpub\wwwroot\2\web.config
LOG: Using host configuration file:
\\?\c:\windows\microsoft.net\framework\v2.0.50727\ aspnet.config
LOG: Using machine configuration file from
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\conf ig\machine.config.
LOG: Post-policy reference: Microsoft.VisualBasic, Version=2.0.0.1,
Culture=neutral, PublicKeyToken=6315780d5082271f
LOG: The same bind was seen before, and was failed with hr = 0x80070002.

"Bonggoy Cruz" <bo**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
That's what confuses me. They are no reference in my web.config file.

"Dustin van de Sande [MCAD]"
<Du******************@discussions.microsoft.com> wrote in message
news:EC**********************************@microsof t.com...
Could you post the part of the web.config containing the references?

"Bonggoy Cruz" wrote:

That helped with the Crystal problem. Now I am getting this 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.IO.FileNotFoundException: Could not load file
or
assembly 'Microsoft.VisualBasic, Version=2.0.0.1, Culture=neutral,
PublicKeyToken=6315780d5082271f' or one of its dependencies. The system
cannot find the file specified.

Isn't Microsoft.VisualBasic referenced automatically?

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote
in
message news:06**********************************@microsof t.com...
> How did you deploy? It seems you are missing some references to the
> crystal
> report libraries.
>
> VS 2005 solutions have a different way of deploying comparing to VS
> 2003
> solutions.
> In VS 2005 you can:
> -Create a web setup project
> -Deploy all your source code (also the .cs)
> -Precompile your website using the build menu -> Publish website.
>
> You can make sure a copy of your reference is added to the bin
> directory
> by
> setting the propery "Copy local" of the reference to true.
>
> Good luck.
>
> "Bonggoy Cruz" wrote:
>
>> I was able to convert our web application using the web project
>> option
>> (still have a lot of problem when converting to a vs2005 web site).
>> It
>> run
>> without a problem on my machine. I deployed to our test environment
>> and
>> I
>> got the following errors:
>>
>> Parser Error Message: Could not load file or assembly
>> 'CrystalDecisions.Web,
>> Version=10.2.3600.0, Culture=neutral,
>> PublicKeyToken=692fbea5521e1304' or
>> one of its dependencies. The system cannot find the file specified.
>>
>> Any help is appreciated
>>
>> Bonggoy
>>
>>
>>



Apr 14 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Don Bruder | last post by:
Got a stumper here. I imagine that for someone experienced in C++, this is too pathetic for words. For a rookie, using this project as a sort of "midterm exam" in his self-taught "how to program in...
40
by: Peter Row | last post by:
Hi all, Here is my problem: I have a SQL Server 2000 DB with various NVarChar, NText fields in its tables. For some stupid reason the data was inserted into these fields in UTF8 encoding. ...
3
by: CoolPint | last post by:
After upgrading to gcc 3.4.2 from gcc 3.2.3, I got compiler errors that I could not figure out. After reading other postings, I learned that my coding was not compliant to the standard in the first...
2
by: Thames | last post by:
Hi, I have to repost my question for help. Yesterday I set up two DB UDB ESE V8.2 server on linux and windows platform, respectively. Both servers have been connected without any problems...
11
by: Marcus Jacobs | last post by:
Dear Group I have written a file conversion program that uses strtof to convert text strings to floats. It works as I intended except for my error messages. It is my understanding that strtof...
3
by: Scott Gunn | last post by:
Hello all I'm trying to use the scrollwindowex api however I have the same problem as this guy had. There is an answer here in the reply. I just need some help converting it to VB.Net >Thanks...
1
by: Rahul | last post by:
Hi Everybody I have some problem in my script. please help me. This is script file. I have one *.inq file. I want run this script in XML files. But this script errors shows . If u want i am...
8
by: SpreadTooThin | last post by:
Basically I think the problem is in converting from a 32 bit integer to a 16 bit integer. I have two arrays: import array a = array.array('L', ) b = array.array('H', ) b = a
5
by: Ivan Velev | last post by:
Hello, Minimal example below - it gives me different output if I comment / uncomment the extra time.mktime call - note that this call is not related in any way to main logic flow. When...
4
by: Ty | last post by:
Hello all, I am creating a website in VS 2008 VB.net. On one of my pages I am using the Table control to make a type of calendar a IN/OUT board. The problem I found after I wrote all the code...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.