CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > visual_studio.visual_web_developer_2008_express Tags:
Item Type: NewsGroup Date Entered: 9/4/2007 10:07:50 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 12 Views: 14 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
13 Items, 1 Pages 1 |< << Go >> >|
BlackMustard
Asp.Net User
parser error "caused" by vwd20089/4/2007 10:07:50 PM

0/0

hi,

i have several web forms in a project that work perfectly well locally, but gives me a parser error about "couldn't load type 'blabla'" where 'blabla' is the class in the codebehind file. since everything works on my laptop both when requesting it via localhost/ and via my outbound ip address, i suspect this might be something caused by changes in iis made by vwd2008.

 does anyone have an idea of what these changes might be, and where i could make them on the server as well? it is a server that i have full admin access to, so configuring things in iis is not a problem.

 br/bm


-bm
Mikhail Arkhipo
Asp.Net User
Re: parser error "caused" by vwd20089/4/2007 11:39:40 PM

0/0

I assume you work on the Web site on your laptop and then deploy pages to a remote server. Does remote server have .NET 3.5 installed?


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/6/2007 8:16:16 PM

0/0

no, the .net version is 2.0.xxxxxxx on both machines. (yes, i still work in vwd 2008, but i deliberately chose not to install 3.5 because i had several other sites coded for 2.0.)

the weird thing is that not all pages give this error, and i can't find any difference between the source code in the pages. do you know what to look for?


-bm
Mikhail Arkhipo
Asp.Net User
Re: parser error "caused" by vwd20089/6/2007 9:00:26 PM

0/0

VWD 2008 requires 3.5 framework to function properly. You can choose not to target 3.5 when you create Web site and rather target 2.0, but 3.5 must be installed for VWD to work.


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/8/2007 11:02:45 PM

0/0

i have now uninstalled vwd2008 and .Net 3.5, and installed vwd2005 instead. i rebuilt the page in 2005, uploaded a new file to the server, but i still get the same error. and this time i'm positive the two machines are running 2.0.xxxxxxx, so it's not an error caused by that. what else could i look for?

 thanks for your tries to help me so far, by the way. i appreciate it.


-bm
Mikhail Arkhipo
Asp.Net User
Re: parser error "caused" by vwd20089/9/2007 12:40:05 PM

0/0

What exactly the type it cannot load? Perhaps something installed on your laptop in GAC that is not installed on the server?


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/10/2007 8:42:24 PM

0/0

it is the class in my codebehind which i want the page to inherit:

 default.aspx, line 1:

<%@ Page CodeFile="default.aspx.vb" Inherits="default" EnableViewState="false" %>

the first few lines of default.aspx.vb, in the same directory:

Imports System
Imports System.Configuration
Imports System.Data
Imports System.Data.OleDb
Imports System.Text
Imports System.Web
Imports System.Xml

Partial Class default
.....

as i said, it works locally on my computer but not on the web server. other pages on the same site, with identical page declarations and codebehind file first lines, work perfectly fine on both locations.

this is driving me insane, thanks for helping me out of it...


-bm
Mikhail Arkhipo
Asp.Net User
Re: parser error "caused" by vwd20089/12/2007 2:51:29 PM

0/0

What does the error sa exactly? I.e. what is name of the type that fails to load?


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/13/2007 8:23:37 AM

0/0

since it concens several different web forms it is not always the same, but one example is a type called 'clsRSS', both in the inherits attribute of the page and in the code module. another one is simply called 'login'.


-bm
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/15/2007 10:48:07 PM

0/0

hi again - just bumping this up a little, since i need pretty urgent help. i'll provide two sample code snippets, exactly as they look on a web form that works perfectly well on my local machine, but gives a parser error on the server:

first line of ~/predikan/default.aspx :

<%@ Page Language="VB" MasterPageFile="~/masterpage.master" AutoEventWireup="false" CodeFile="default.aspx.vb" Inherits="predikan_download_default" title="BK3 - Ladda ner f?rkunnelse" %>

first lines of ~/predikan/rss/default.aspx.vb :

Imports System
Imports System.Data
Imports System.Data.OleDb
Imports System.Configuration
Imports System.Text
Imports System.Convert
Imports system.IO
Imports System.Math

Partial Class predikan_default : Inherits System.Web.UI.Page

please help me with this - i'm getting desperate!


-bm
Mikhail Arkhipo
Asp.Net User
Re: parser error "caused" by vwd20089/16/2007 6:57:50 PM

0/0

 Inherits attribute and partial class name are different while they must match.


Thanks

------------------------------------------------------------

This posting is provided "AS IS" with no warranties, and confers no rights.
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd20089/16/2007 9:39:50 PM

0/0

haha - i don't know how i managed to miss that...

...however, the problem persists although the class names are corrected (they're both called predikan_default now)...

i also tried precompiling all .vb files in the project and put the output file in the bin folder on the server, but that didn't solve the problem either.


-bm
BlackMustard
Asp.Net User
Re: parser error "caused" by vwd200810/2/2007 4:19:13 PM

0/0

turned out the problem wasn't .net 3, but the fact that my server was running a beta version of 2.0. installed a real 2.0 version and went back to 2005 (waiting for 3.5 to become more stable), and now everything works fine.


-bm
13 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
parser error "caused" by vwd2008 - ASP.NET Forums Re: parser error "caused" by vwd2008. 09-04-2007, 7:39 PM. Contact ... Re: parser error "caused" by vwd2008. 09-06-2007, 4:16 PM. Contact ...
parser error "caused" by vwd2008 - ASP.NET Forums parser error "caused" by vwd2008. Last post 10-02-2007 12:19 PM by BlackMustard. 12 replies. Sort Posts:. Oldest to newest, Newest to oldest ...
Web.Config Problems - .NET 3.5? in ASP.NET I come from a VB6 background and am using MS VWD2008. ... Parser Error Message: Child nodes not allowed. Source Error: Line 102: ...
Upgrading to 3.5 framework on Windows Server 2003 : asp.net, 3.5 ... I downloaded VWD2008 and created a web site that uses LINQ heavily. ... Parser Error Message: Could not load file or assembly 'System.Web. ...
Visual Web Developer Team Blog : Using VS 2008 to target ASP.NET ... When I run the web application I get the parser error: "Could not load file ..... I'm sorry that you are experiencing performance issues with VWD2008 Beta2. ...
ng.asp-net-forum.installation_and_setup - Fix error problem @CodeVerge VWD2005 or VWD2008 will not install/repair, 2, 13, 12/28/2007 12:25:53 AM ... Parser Error on , 4, 15, 12/25/2007 9:16:52 PM ...
ng.asp-net-forum.visual_web_developer_2008_express - fix error ... webAdmin.master parse error, 0, 18, 4/10/2008 2:39:16 PM .... Its difficult to attache css file in vwd2008 - ASP.NET Forums : ASP.NET Forums ยป Visual Studio ...
TheMSsForum.com >> Asp >> Event handling in VC++ 2005 .NET - The ... Hello, I have just downloaded VWD2008(not sp1) and I've noticed that there're no .... Error parsing web.config file I am re-posting this message after ...
CodeProject: Amazon-esque Pager. Free source code and programming help Oct 21, 2007 ... Parse(stateValue.ToString()); } return result; } .... It shows the PagerControl tags with the red squiggle error, the error message is the ...
Problem with getting xml from Picasa - MSDN Forums Jan 14, 2008 ... You can parse the XML string using the DOM parsers for each browser as ... On the image error. Silverlight 4001 errors are fairly commong as ...




Search This Site:










postback url ?

any known issues

menu and xmldocument

possible feature addition - time zone sensitivity

stop master page screen refresh on menu selection....please help...

text file reverse read?

going off the treeview's bound sitemap

sending fax from asp.net

pdf security through iis

dnn v2.0 vs. dnn v1.1

know of a "email this page" module that actually emails the page?

login - can't retrieve username and password

application blocks

site keyword search returns "object reference not set to an instance of an object."

login control and ou authentication problem

modify active directory password

windows authentication in intranet

an easy way to check for the existence of a file on a remote server?

using refresh html page in internet explorer

form authentication - not on the first page ?

can you convert asp.net web apps built with vs.net 2003?

how can i access remember me option in login control

rootonly=true bug?

i can't find the fix for this error :s

changed dbowner from dbo to hostgivenuser

an always error occurred when some member mails are delivered by asp.net

dnn to support ms access & mysql?

partially trusted callers exception from asp.net.

tabstrip image flicker problem

strange debug problems

 
All Times Are GMT