473,396 Members | 2,109 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,396 software developers and data experts.

Quick Question - Newby Question

I have a code behind VB app that I have developed and am trying to place in a
subfolder of a website that I have. I run the app on my dev box fine with no
errors but when I upload it to the directory and put the .dll in the root
directory's bin folder I receive the followinng error message. Any idea?

Server Error in '/beta' Application
--------------------------------------------------------------------------------

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'OnlineApp.apply'.

Source Error:
Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="OnlineApp.apply" %>
Line 2: <HTML>
Line 3: <HEAD>
Source File: D:\Web\beta\apply.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
Nov 19 '05 #1
5 1291
The type "OnlineApp.apply" has to be in the assembly (.dll file) that
your ASP.NET project builds.

Are you saying OnlineApp.apply is a seperate executable that you want
to run? If so, I think you are looking to do an "HREF EXE" deployment:
http://msdn.microsoft.com/library/de...nusingie55.asp

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Mon, 14 Feb 2005 12:17:02 -0800, "Ryan Smith"
<Ry*******@discussions.microsoft.com> wrote:
I have a code behind VB app that I have developed and am trying to place in a
subfolder of a website that I have. I run the app on my dev box fine with no
errors but when I upload it to the directory and put the .dll in the root
directory's bin folder I receive the followinng error message. Any idea?

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'OnlineApp.apply'.

Source Error:
Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="OnlineApp.apply" %>
Line 2: <HTML>
Line 3: <HEAD>
Source File: D:\Web\beta\apply.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032


Nov 19 '05 #2
The type "OnlineApp.apply" has to be in the assembly (.dll file) that
your ASP.NET project builds.

Are you saying OnlineApp.apply is a seperate executable that you want
to run? If so, I think you are looking to do an "HREF EXE" deployment:
http://msdn.microsoft.com/library/de...nusingie55.asp

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Mon, 14 Feb 2005 12:17:02 -0800, "Ryan Smith"
<Ry*******@discussions.microsoft.com> wrote:
I have a code behind VB app that I have developed and am trying to place in a
subfolder of a website that I have. I run the app on my dev box fine with no
errors but when I upload it to the directory and put the .dll in the root
directory's bin folder I receive the followinng error message. Any idea?

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'OnlineApp.apply'.

Source Error:
Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="OnlineApp.apply" %>
Line 2: <HTML>
Line 3: <HEAD>
Source File: D:\Web\beta\apply.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032


Nov 19 '05 #3
Scott - thank you for your reply - I have the OnlineApp.apply compiled as
OnlineApp.dll and placed in the bin folder of the root directory of the site.
The contents of the app (aspx files, etc.) are located in a child folder and
i am unsure if this is causing the problem.

"Scott Allen" wrote:
The type "OnlineApp.apply" has to be in the assembly (.dll file) that
your ASP.NET project builds.

Are you saying OnlineApp.apply is a seperate executable that you want
to run? If so, I think you are looking to do an "HREF EXE" deployment:
http://msdn.microsoft.com/library/de...nusingie55.asp

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Mon, 14 Feb 2005 12:17:02 -0800, "Ryan Smith"
<Ry*******@discussions.microsoft.com> wrote:
I have a code behind VB app that I have developed and am trying to place in a
subfolder of a website that I have. I run the app on my dev box fine with no
errors but when I upload it to the directory and put the .dll in the root
directory's bin folder I receive the followinng error message. Any idea?

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'OnlineApp.apply'.

Source Error:
Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="OnlineApp.apply" %>
Line 2: <HTML>
Line 3: <HEAD>
Source File: D:\Web\beta\apply.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032


Nov 19 '05 #4
If the "child folder" is declared as an Application,
or as a Virtual Directory, the place to put the
OnlineApp.dll is in the /bin directory of the child folder.

If the "child folder" is *not* an Application or a Virtual dir,
then the /bin directory off of wwwroot should work.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"Ryan Smith" <Ry*******@discussions.microsoft.com> wrote in message
news:B5**********************************@microsof t.com...
Scott - thank you for your reply - I have the OnlineApp.apply compiled as
OnlineApp.dll and placed in the bin folder of the root directory of the
site.
The contents of the app (aspx files, etc.) are located in a child folder
and
i am unsure if this is causing the problem.

"Scott Allen" wrote:
The type "OnlineApp.apply" has to be in the assembly (.dll file) that
your ASP.NET project builds.

Are you saying OnlineApp.apply is a seperate executable that you want
to run? If so, I think you are looking to do an "HREF EXE" deployment:
http://msdn.microsoft.com/library/de...nusingie55.asp

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Mon, 14 Feb 2005 12:17:02 -0800, "Ryan Smith"
<Ry*******@discussions.microsoft.com> wrote:
>I have a code behind VB app that I have developed and am trying to place
>in a
>subfolder of a website that I have. I run the app on my dev box fine
>with no
>errors but when I upload it to the directory and put the .dll in the
>root
>directory's bin folder I receive the followinng error message. Any
>idea?
>
>Server Error in '/beta' Application.
>--------------------------------------------------------------------------------
>
>Parser Error
>Description: An error occurred during the parsing of a resource required
>to
>service this request. Please review the following specific parse error
>details and modify your source file appropriately.
>
>Parser Error Message: Could not load type 'OnlineApp.apply'.
>
>Source Error:
>
>
>Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
>AutoEventWireup="false" Inherits="OnlineApp.apply" %>
>Line 2: <HTML>
>Line 3: <HEAD>
>
>
>Source File: D:\Web\beta\apply.aspx Line: 1
>
>
>--------------------------------------------------------------------------------
>Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
>ASP.NET
>Version:1.1.4322.2032


Nov 19 '05 #5
On Mon, 14 Feb 2005 12:17:02 -0800, "Ryan Smith"
<Ry*******@discussions.microsoft.com> wrote:
I have a code behind VB app that I have developed and am trying to place in a
subfolder of a website that I have. I run the app on my dev box fine with no
errors but when I upload it to the directory and put the .dll in the root
directory's bin folder I receive the followinng error message. Any idea?

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: Could not load type 'OnlineApp.apply'.

Source Error:
Line 1: <%@ Page CodeBehind="apply.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="OnlineApp.apply" %>
Line 2: <HTML>
Line 3: <HEAD>
Source File: D:\Web\beta\apply.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032


Error in /beta Application it says, that means the beta folder is an
app and the dll needs to be in /beta/bin

Cheers

--
Iain Norman | http://www.eliteforum.org
Nov 19 '05 #6

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

Similar topics

9
by: Damien | last post by:
I have just built a simple stopwatch application, but when i f5 to get things goings i get this message, An unhandled exception of type 'System.ArithmeticException' occurred in...
0
by: Pete | last post by:
Hi All, A total Newby with, possibly, a daft question? However, until I can get a reasonable explanation I am disinclined towards going further. Here goes: I recently downloaded the latest...
8
by: Ask | last post by:
G'day All, Just thought I'd drop in and say hi. I'm new to Python, but old to software development. Python is one of the languages used in my new job, so I've just bought a book, read it, and...
10
by: Fred Nelson | last post by:
Hi: I have programmed in VB.NET for about a year and I'm in the process of learing C#. I'm really stuck on this question - and I know it's a "newby" question: In VB.NET I have several...
4
by: Fred Nelson | last post by:
I have an applicatioin that I'm writing that uses a "case" file that contains over 350 columns and more may be added in the future. I would like to create a dataset with all the column names and...
4
by: Fred Nelson | last post by:
Hi: I'm developing a web application that needs to have five values, each retrieved from cookies on many pages. If I have five "Request.Cookies" commands together does this cause five "round...
2
by: Fred Nelson | last post by:
Hi: I'm working on a VS2005 web application and I have what is probabably a "newby" question. In VS2003 I could drag a textbox/button/etc on to a form and position it with the mouse. I...
2
by: johnnyG | last post by:
Greetings, I'm studying for the 70-330 Exam using the MS Press book by Tony Northrup and there are 2 side-by-side examples of using the SHA1CryptoServiceProvider to create a hash value from a...
10
by: Charles Russell | last post by:
Why does this work from the python prompt, but fail from a script? How does one make it work from a script? #! /usr/bin/python import glob # following line works from python prompt; why not in...
5
by: alexrixhardson | last post by:
Hi guys, I am a newby in the C/C++ world, and I am beginning to work on a rather simple TCP/IP proxy application which must be able to handle large volume of data as quickly as possible. ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.