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

web.config file problem

Hi all,

I cut and paste the following code from msdn help page which it just
introduces view and multiview server controls.

Here is what I do:
in vs studio 2005, File --New Web Site, it brings me to the dir: C:\Visual
Studio 2005\WebSites\WebSite1, it creates default.aspx and default.aspx.vb
and I pasted the following code into default.aspx.
I go to build to build web site and it says:------ Build started: Project:
C:\...\WebSite1\, Configuration: Debug .NET ------
Validating Web Site
Building directory '/WebSite1/'.
So I created virtual dir website1 to point to C:\Visual Studio
2005\WebSites\WebSite1
Then I ran localhost/webSite1/default.aspx
The following error message comes up:
Parser Error Message: Unrecognized configuration section 'connectionStrings'

Source Error:
Line 10: <configuration>
Line 11: <appSettings/>
Line 12: <connectionStrings/>
Line 13: <system.web>
Line 14: <!--

Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line: 12

I don't know why since it is created by vs by default. so I commented out.

The open the page again, then the following message comes up:
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 25: <compilation debug="false" strict="false" explicit="true" />
Line 26: <pages>
Line 27: <namespaces>
Line 28: <clear />
Line 29: <add namespace="System" />
Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line: 27
and I delete that part.
And I opened the page again:
Now the error message is:
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
System.Web.UI.WebControls.MultiView from assembly System.Web,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.

Source Error:
Line 44: <h3>MultiView Class Example</h3>
Line 45:
Line 46: <asp:MultiView id="MultiView1"
Line 47: runat="Server">
Line 48:
Source File: C:\Visual Studio 2005\WebSites\WebSite1\default.aspx Line: 46
I never encounter this kind of problem before, can you help?

Thanks.

Betty
<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<title>MultiView Class Example</title>
<script runat="server">

Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' The first time the page loads,
' render the DefaultView.
If Not IsPostBack Then
' Set DefaultView as the active view.
MultiView1.SetActiveView(DefaultView)
End If

End Sub

Sub LinkButton_Command(sender As Object, e As
System.Web.UI.WebControls.CommandEventArgs)
' Determine which link button was clicked
' and set the active view to
' the view selected by the user.
Select Case (e.CommandArgument)
Case "DefaultView"
MultiView1.SetActiveView(DefaultView)
Case "News"
MultiView1.SetActiveView(NewsView)
Case "Shopping"
MultiView1.SetActiveView(ShoppingView)
Case Else
Throw New Exception("You did not select a valid list
item.")

End Select

End Sub

</script>

</head>
<body>
<form id="Form1" runat="server">

<h3>MultiView Class Example</h3>

<asp:MultiView id="MultiView1"
runat="Server">

<asp:View id="DefaultView"
runat="Server">

<asp:Panel id="DefaultViewPanel"
Width="330px"
BackColor="#C0C0FF"
BorderColor="#404040"
BorderStyle="Double"
runat="Server">

<asp:Label id="DefaultLabel1"
Font-bold="true"
Font-size="14"
Text="The Default View"
runat="Server"
AssociatedControlID="DefaultView">
</asp:Label>

<asp:BulletedList id="DefaultBulletedList1"
BulletStyle="Disc"
DisplayMode="Hyperlink"
Target="_blank"
runat="Server">
<asp:ListItem
Value="http://www.microsoft.com">Today's Weather</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Today's Stock Quotes</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Today's News Headlines</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Today's Featured Shopping</asp:ListItem>
</asp:BulletedList>

<hr />

<asp:Label id="DefaultLabel2"
Font-size="12"
Text="Click a link to display a different view:"
runat="Server">
</asp:Label><br />

<asp:LinkButton id="Default_NewsLink"
Text="Go to News View"
OnCommand="LinkButton_Command"
CommandArgument="News"
CommandName="Link"
Width="150px"
runat="Server">
</asp:LinkButton>

<asp:LinkButton id="Default_ShoppingLink"
Text="Go to Shopping View"
OnCommand="LinkButton_Command"
CommandArgument="Shopping"
CommandName="Link"
Width="150px"
runat="server">
</asp:LinkButton><br /><br />

</asp:Panel>

</asp:View>

<asp:View id="NewsView"
runat="Server">

<asp:Panel id="NewsPanel1"
Width="330px"
BackColor="#C0FFC0"
BorderColor="#404040"
BorderStyle="Double"
runat="Server">

<asp:Label id="NewsLabel1"
Font-bold="true"
Font-size="14"
Text="The News View"
runat="Server"
AssociatedControlID="NewsView">
</asp:Label>

<asp:BulletedList id="NewsBulletedlist1"
BulletStyle="Disc"
DisplayMode="Hyperlink"
Target="_blank"
runat="Server">
<asp:ListItem
Value="http://www.microsoft.com">Today's International
Headlines</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Today's National Headlines</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Today's Local News</asp:ListItem>
</asp:BulletedList>

<hr />

<asp:Label id="NewsLabel2"
Font-size="12"
Text="Click a link to display a different view:"
runat="Server">
</asp:Label><br />

<asp:LinkButton id="News_DefaultLink"
Text="Go to the Default View"
OnCommand="LinkButton_Command"
CommandArgument="DefaultView"
CommandName="Link"
Width="150px"
runat="Server">
</asp:LinkButton>

<asp:LinkButton id="News_ShoppingLink"
Text="Go to Shopping View"
OnCommand="LinkButton_Command"
CommandArgument="Shopping"
CommandName="Link"
Width="150px"
runat="Server">
</asp:LinkButton><br /><br />

</asp:Panel>

</asp:View>

<asp:View id="ShoppingView"
runat="Server">

<asp:Panel id="ShoppingPanel1"
Width="330px"
BackColor="#FFFFC0"
BorderColor="#404040"
BorderStyle="Double"
runat="Server">

<asp:Label id="ShoppingLabel1"
Font-Bold="true"
Font-size="14"
Text="The Shopping View"
runat="Server"
AssociatedControlID="ShoppingView">
</asp:Label>

<asp:BulletedList id="ShoppingBulletedlist1"
BulletStyle="Disc"
DisplayMode="Hyperlink"
Target="_blank"
runat="Server">
<asp:ListItem
Value="http://www.microsoft.com">Shop for Home and Garden </asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Shop for Women's Fashions</asp:ListItem>
<asp:ListItem
Value="http://www.microsoft.com">Shop for Men's Fashions</asp:ListItem>
</asp:BulletedList>

<hr />

<asp:Label id="ShoppingLabel2"
Font-size="12"
Text="Click a link to display a different view:"
runat="Server">
</asp:Label><br />

<asp:LinkButton id="Shopping_DefaultLink"
Text="Go to the Default View"
OnCommand="LinkButton_Command"
CommandArgument="DefaultView"
CommandName="Link"
Width="150px"
runat="Server">
</asp:LinkButton>

<asp:LinkButton id="Shopping_NewsLink"
Text="Go to News View"
OnCommand="LinkButton_Command"
CommandArgument="News"
CommandName="Link"
Width="150px"
runat="Server">
</asp:LinkButton><br /><br />

</asp:Panel>

</asp:View>

</asp:MultiView>

</form>
</body>
</html>

--
Betty
--
Betty
Jul 30 '08 #1
3 2893
Hi Betty,

Nice to see you.

Seems you start moving to ASP.NET recently?

Regarding on the the problem you encountered, here are my understanding and
some suggestions:

1. Start from Visual Studio 2005(and VS 2008), Visual studio provide a test
webserver for developing and debugging ASP.NET web application. Therefore,
at development time, you can directly select a page and to "view in
browser" or event start F5 to debug without deploying it to IIS:

http://dotnetfortherestofus.blogspot...onal-developme
nt.html

and that's also why visual studio let you choose a normal file system
directory(rather than IIS virtual directory though you can still choose to
create the project in IIS) when you create a new web site project.
2. As for the following error you mentioned (after deploy the the web site
directory into IIS):

"Parser Error Message: Unrecognized configuration section
'connectionStrings' "

based on my experience, this is a typical error which occurs when you
deploy an ASP.NET 2.0 application in a IIS virtual dir which is configured
to run .NET 1.1/ASP.NET 1.1

Therefore, I suggest you check whether the IIS(site or the application
virtual directory) has been configured as .NET 2.0. There should has a
"ASPNET" tab in the IIS virtual dir MMC to let you configure version. Here
is a web thread which also discussing on this:

http://forums.msdn.microsoft.com/en-...df53fe-666b-4a
98-92d2-d6e4ba52552a

For other sequential issue, I think some of them may also be related to the
runtime configuration. I suggest you first try the above things and make an
simple ASP.NET application(and some basic page that use some simple
controls) running. Then, we can continue to focus on other specific issues.

If you have anything unclear, please feel free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
-------------------------
>From: =?Utf-8?B?YzY3NjIyOA==?= <be***@newsgroup.nospam>
Subject: web.config file problem
Date: Tue, 29 Jul 2008 21:35:01 -0700
>
Hi all,

I cut and paste the following code from msdn help page which it just
introduces view and multiview server controls.

Here is what I do:
in vs studio 2005, File --New Web Site, it brings me to the dir:
C:\Visual
>Studio 2005\WebSites\WebSite1, it creates default.aspx and default.aspx.vb
and I pasted the following code into default.aspx.
I go to build to build web site and it says:------ Build started: Project:
C:\...\WebSite1\, Configuration: Debug .NET ------
Validating Web Site
Building directory '/WebSite1/'.
So I created virtual dir website1 to point to C:\Visual Studio
2005\WebSites\WebSite1
Then I ran localhost/webSite1/default.aspx
The following error message comes up:
Parser Error Message: Unrecognized configuration section
'connectionStrings'
>
Source Error:
Line 10: <configuration>
Line 11: <appSettings/>
Line 12: <connectionStrings/>
Line 13: <system.web>
Line 14: <!--

Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line:
12
>
I don't know why since it is created by vs by default. so I commented out.

The open the page again, then the following message comes up:
Description: An error occurred during the processing of a configuration
file
>required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 25: <compilation debug="false" strict="false" explicit="true"
/>
>Line 26: <pages>
Line 27: <namespaces>
Line 28: <clear />
Line 29: <add namespace="System" />
Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line:
27
>and I delete that part.
And I opened the page again:
Now the error message is:
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
System.Web.UI.WebControls.MultiView from assembly System.Web,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.

Source Error:
Line 44: <h3>MultiView Class Example</h3>
Line 45:
Line 46: <asp:MultiView id="MultiView1"
Line 47: runat="Server">
Line 48:
Jul 30 '08 #2
Steven,

Excellent info. I tried 1. and I do see the page through view in browser.
Nice feature.
Yes , you are right, after I set up asp.net 2.0. Everything is OK.

I am moving to asp.net 2.0 and C#. I probably will post a lot of questions
later on.
Fabulous support.

--
Betty
"Steven Cheng [MSFT]" wrote:
Hi Betty,

Nice to see you.

Seems you start moving to ASP.NET recently?

Regarding on the the problem you encountered, here are my understanding and
some suggestions:

1. Start from Visual Studio 2005(and VS 2008), Visual studio provide a test
webserver for developing and debugging ASP.NET web application. Therefore,
at development time, you can directly select a page and to "view in
browser" or event start F5 to debug without deploying it to IIS:

http://dotnetfortherestofus.blogspot...onal-developme
nt.html

and that's also why visual studio let you choose a normal file system
directory(rather than IIS virtual directory though you can still choose to
create the project in IIS) when you create a new web site project.
2. As for the following error you mentioned (after deploy the the web site
directory into IIS):

"Parser Error Message: Unrecognized configuration section
'connectionStrings' "

based on my experience, this is a typical error which occurs when you
deploy an ASP.NET 2.0 application in a IIS virtual dir which is configured
to run .NET 1.1/ASP.NET 1.1

Therefore, I suggest you check whether the IIS(site or the application
virtual directory) has been configured as .NET 2.0. There should has a
"ASPNET" tab in the IIS virtual dir MMC to let you configure version. Here
is a web thread which also discussing on this:

http://forums.msdn.microsoft.com/en-...df53fe-666b-4a
98-92d2-d6e4ba52552a

For other sequential issue, I think some of them may also be related to the
runtime configuration. I suggest you first try the above things and make an
simple ASP.NET application(and some basic page that use some simple
controls) running. Then, we can continue to focus on other specific issues.

If you have anything unclear, please feel free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
-------------------------
From: =?Utf-8?B?YzY3NjIyOA==?= <be***@newsgroup.nospam>
Subject: web.config file problem
Date: Tue, 29 Jul 2008 21:35:01 -0700

Hi all,

I cut and paste the following code from msdn help page which it just
introduces view and multiview server controls.

Here is what I do:
in vs studio 2005, File --New Web Site, it brings me to the dir:
C:\Visual
Studio 2005\WebSites\WebSite1, it creates default.aspx and default.aspx.vb
and I pasted the following code into default.aspx.
I go to build to build web site and it says:------ Build started: Project:
C:\...\WebSite1\, Configuration: Debug .NET ------
Validating Web Site
Building directory '/WebSite1/'.
So I created virtual dir website1 to point to C:\Visual Studio
2005\WebSites\WebSite1
Then I ran localhost/webSite1/default.aspx
The following error message comes up:
Parser Error Message: Unrecognized configuration section
'connectionStrings'

Source Error:
Line 10: <configuration>
Line 11: <appSettings/>
Line 12: <connectionStrings/>
Line 13: <system.web>
Line 14: <!--

Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line:
12

I don't know why since it is created by vs by default. so I commented out.

The open the page again, then the following message comes up:
Description: An error occurred during the processing of a configuration
file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 25: <compilation debug="false" strict="false" explicit="true"
/>
Line 26: <pages>
Line 27: <namespaces>
Line 28: <clear />
Line 29: <add namespace="System" />
Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config Line:
27
and I delete that part.
And I opened the page again:
Now the error message is:
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
System.Web.UI.WebControls.MultiView from assembly System.Web,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.

Source Error:
Line 44: <h3>MultiView Class Example</h3>
Line 45:
Line 46: <asp:MultiView id="MultiView1"
Line 47: runat="Server">
Line 48:

Jul 31 '08 #3
No problem!

Welcome to post here and thanks for the contribution to the newsgroup:)

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?YzY3NjIyOA==?= <be***@newsgroup.nospam>
References: <EB**********************************@microsoft.co m>
<2H**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: RE: web.config file problem
Date: Wed, 30 Jul 2008 19:08:01 -0700
>Steven,

Excellent info. I tried 1. and I do see the page through view in browser.
Nice feature.
Yes , you are right, after I set up asp.net 2.0. Everything is OK.

I am moving to asp.net 2.0 and C#. I probably will post a lot of questions
later on.
Fabulous support.

--
Betty
"Steven Cheng [MSFT]" wrote:
>Hi Betty,

Nice to see you.

Seems you start moving to ASP.NET recently?

Regarding on the the problem you encountered, here are my understanding
and
>some suggestions:

1. Start from Visual Studio 2005(and VS 2008), Visual studio provide a
test
>webserver for developing and debugging ASP.NET web application.
Therefore,
>at development time, you can directly select a page and to "view in
browser" or event start F5 to debug without deploying it to IIS:

http://dotnetfortherestofus.blogspot...onal-developme
>nt.html

and that's also why visual studio let you choose a normal file system
directory(rather than IIS virtual directory though you can still choose
to
>create the project in IIS) when you create a new web site project.
2. As for the following error you mentioned (after deploy the the web
site
>directory into IIS):

"Parser Error Message: Unrecognized configuration section
'connectionStrings' "

based on my experience, this is a typical error which occurs when you
deploy an ASP.NET 2.0 application in a IIS virtual dir which is
configured
>to run .NET 1.1/ASP.NET 1.1

Therefore, I suggest you check whether the IIS(site or the application
virtual directory) has been configured as .NET 2.0. There should has a
"ASPNET" tab in the IIS virtual dir MMC to let you configure version.
Here
>is a web thread which also discussing on this:

http://forums.msdn.microsoft.com/en-...df53fe-666b-4a
>98-92d2-d6e4ba52552a

For other sequential issue, I think some of them may also be related to
the
>runtime configuration. I suggest you first try the above things and make
an
>simple ASP.NET application(and some basic page that use some simple
controls) running. Then, we can continue to focus on other specific
issues.
>>
If you have anything unclear, please feel free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
>suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
>where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
>up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach
the
>most efficient resolution. The offering is not appropriate for
situations
>that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are
best
>handled working with a dedicated Microsoft Support Engineer by
contacting
>Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>-------------------------
>From: =?Utf-8?B?YzY3NjIyOA==?= <be***@newsgroup.nospam>
Subject: web.config file problem
Date: Tue, 29 Jul 2008 21:35:01 -0700
>
Hi all,

I cut and paste the following code from msdn help page which it just
introduces view and multiview server controls.

Here is what I do:
in vs studio 2005, File --New Web Site, it brings me to the dir:
C:\Visual
>Studio 2005\WebSites\WebSite1, it creates default.aspx and
default.aspx.vb
>and I pasted the following code into default.aspx.
I go to build to build web site and it says:------ Build started:
Project:
>C:\...\WebSite1\, Configuration: Debug .NET ------
Validating Web Site
Building directory '/WebSite1/'.
So I created virtual dir website1 to point to C:\Visual Studio
2005\WebSites\WebSite1
Then I ran localhost/webSite1/default.aspx
The following error message comes up:
Parser Error Message: Unrecognized configuration section
'connectionStrings'
>
Source Error:
Line 10: <configuration>
Line 11: <appSettings/>
Line 12: <connectionStrings/>
Line 13: <system.web>
Line 14: <!--

Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config
Line:
>12
>
I don't know why since it is created by vs by default. so I commented
out.
>
The open the page again, then the following message comes up:
Description: An error occurred during the processing of a configuration
file
>required to service this request. Please review the specific error
details
>below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 25: <compilation debug="false" strict="false"
explicit="true"
>/>
>Line 26: <pages>
Line 27: <namespaces>
Line 28: <clear />
Line 29: <add namespace="System" />
Source File: C:\Visual Studio 2005\WebSites\WebSite1\web.config
Line:
>27
>and I delete that part.
And I opened the page again:
Now the error message is:
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
System.Web.UI.WebControls.MultiView from assembly System.Web,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.

Source Error:
Line 44: <h3>MultiView Class Example</h3>
Line 45:
Line 46: <asp:MultiView id="MultiView1"
Line 47: runat="Server">
Line 48:

Jul 31 '08 #4

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

Similar topics

1
by: José Joye | last post by:
Hello, I have an assembly that is used by a VB6 application. This application can be a normal exe or an ActiveX (called through CCW). My assembly needs to get extra info from a config file. In...
1
by: Chris | last post by:
I have seen the posts on various places on the internet about .NET framework mismatch issues and I don't think that is my problem. ; ) When I execute the following C++.NET code: String...
7
by: hplloyd | last post by:
i have a windows app which has an app.config file in the solution. The config file holds information such as connection string details. When I create a setup project and include the primary...
5
by: AAguiar | last post by:
I have an asp.net project where the code behind the aspx page calls a c# class which makes calls to a managed static C++ class. The C# class works fine when the asp net worker process starts, when...
25
by: n3crius | last post by:
hi, i just got a web host with asp.net , seemed really cool. aspx with the c# or vb IN the actual main page run fine, but when i use codebehind and make another source file ( a .cs) to go with...
2
by: Luke Dalessandro | last post by:
I have an application with the following layout /root/ /root/Default.aspx /root/web.config /root/child/ /root/child/web.config web.config has a custom configuration section "testSection"...
1
by: savajx1 | last post by:
I am using the new "web deployment addin" in VS 2005 to output my web site. The web site is correctly output (assemblies generated in the \bin subdirectory). The web site on my developement...
3
by: Richard Lewis Haggard | last post by:
I have a test application that is calling an assembly that reads some strings out of a config file. Normally, this assembly supports a web application and the information can be read just fine....
13
by: Khodr | last post by:
Hello, I am using VS.NET 2003 and vb. I build my application MyApp and it generates MyApp.exe.config. So now MyApp.exe reads parameters from MyApp.exe.config. Great and no problem! I need to...
12
by: dbuchanan | last post by:
Hello, (Is this the proper newsgroup?) === Background === I am building a solution with two projects. One project is my data access layer which contains my DataSet as an xsd file. The XSD...
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
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
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
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.