473,322 Members | 1,614 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,322 software developers and data experts.

Several problems with ASP.NET 2.0 Web Application Project

Hello.

Trying to develop ASP.NET Web Application Project using Visual Studio 2005,
SP1, Web Application Projects 2005, .NET Framework 2.0.50727.42, ASP.NET
2.0.50727.210, in Visual Basic on a Windows XP Pro, SP2 computer.

I developed a lot of it by using the excellent tutorials by Scott Mitchell
at http://msdn2.microsoft.com/en-us/library/aa581770.aspx

I am having numerous problems.

I guess the main problem is that when i open my WEB.CONFIG file it displays
63 errors similar to the Message "Could not find schema information for the
element http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'."

All 63 errors refer to the same schema information. The weird thing is that
the program runs anyway.

Another problem is When i put a control on a form, running the program does
not display the control where it is placed on the form. If two controls in
design mode are positioned exactly at the same location from the top of the
form, when i run the program, the controls are positioned differently. If
the Tools/Options/HTML Designer/CSS Positioning/Positioning Options is set to
"Absolutely positioned", then why is it not working?
How do i get it to display at run time the way it is positioned at design
time?

Also, Scott Mitchell's tutorials showed how to develop your web application
with a STYLES.CSS file. It seemed to work OK when i first started adding
controls to a form, but now when i add a new control, it doesn't seem to pick
up the same style pattern as the first controls did.

Another problem. I have a LOGINSTATUS control on a form, and it has a
property LogOutPageURL, but does not have a LoginInPageURL. I'm trying to
make it so that when the user clicks on it, it takes them to a LOGIN.ASPX
form. When i run the program and click the LoginStatus control, it gives an
error saying it can't find "/LOGIN.ASPX". I have a Login.aspx, but it is in
a folder called "Login". I guess it can't find it because it is not in the
main project folder. How do i tell it to look in the Login folder?

Any help that anybody can provide to resolve these issues would be
gratefully appreciated.

Thanks,
Tony

Mar 4 '07 #1
2 1611
The warnings are caused by this line in web.config:
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

Remove the xmlns part so only:

<configuration>

remains...

The warnings will not show up.
The "xmlns" part is added when you use the Web Site Administration Tool.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"Tony Girgenti" <tony(nospam)@lakesideos.comwrote in message
news:25**********************************@microsof t.com...
Hello.

Trying to develop ASP.NET Web Application Project using Visual Studio 2005,
SP1, Web Application Projects 2005, .NET Framework 2.0.50727.42, ASP.NET
2.0.50727.210, in Visual Basic on a Windows XP Pro, SP2 computer.

I developed a lot of it by using the excellent tutorials by Scott Mitchell
at http://msdn2.microsoft.com/en-us/library/aa581770.aspx

I am having numerous problems.

I guess the main problem is that when i open my WEB.CONFIG file it displays
63 errors similar to the Message "Could not find schema information for the
element http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'."

All 63 errors refer to the same schema information. The weird thing is that
the program runs anyway.

Another problem is When i put a control on a form, running the program does
not display the control where it is placed on the form. If two controls in
design mode are positioned exactly at the same location from the top of the
form, when i run the program, the controls are positioned differently. If
the Tools/Options/HTML Designer/CSS Positioning/Positioning Options is set to
"Absolutely positioned", then why is it not working?
How do i get it to display at run time the way it is positioned at design
time?

Also, Scott Mitchell's tutorials showed how to develop your web application
with a STYLES.CSS file. It seemed to work OK when i first started adding
controls to a form, but now when i add a new control, it doesn't seem to pick
up the same style pattern as the first controls did.

Another problem. I have a LOGINSTATUS control on a form, and it has a
property LogOutPageURL, but does not have a LoginInPageURL. I'm trying to
make it so that when the user clicks on it, it takes them to a LOGIN.ASPX
form. When i run the program and click the LoginStatus control, it gives an
error saying it can't find "/LOGIN.ASPX". I have a Login.aspx, but it is in
a folder called "Login". I guess it can't find it because it is not in the
main project folder. How do i tell it to look in the Login folder?

Any help that anybody can provide to resolve these issues would be
gratefully appreciated.

Thanks,
Tony


Mar 5 '07 #2
Hello Juan.

Thanks for your reply.

I did what oyu said and it worked until i went into the Web Site
Administration Tool.

There has to be something else that is wrong, because this was not happening
before and i've used the Web Site Administration Tool plenty of times
before.

Thanks,
Tony

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:Og**************@TK2MSFTNGP02.phx.gbl...
The warnings are caused by this line in web.config:
<configuration
xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

Remove the xmlns part so only:

<configuration>

remains...

The warnings will not show up.
The "xmlns" part is added when you use the Web Site Administration Tool.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"Tony Girgenti" <tony(nospam)@lakesideos.comwrote in message
news:25**********************************@microsof t.com...
>Hello.

Trying to develop ASP.NET Web Application Project using Visual Studio
2005,
SP1, Web Application Projects 2005, .NET Framework 2.0.50727.42, ASP.NET
2.0.50727.210, in Visual Basic on a Windows XP Pro, SP2 computer.

I developed a lot of it by using the excellent tutorials by Scott
Mitchell
at http://msdn2.microsoft.com/en-us/library/aa581770.aspx

I am having numerous problems.

I guess the main problem is that when i open my WEB.CONFIG file it
displays
63 errors similar to the Message "Could not find schema information for
the
element
http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'."

All 63 errors refer to the same schema information. The weird thing is
that
the program runs anyway.

Another problem is When i put a control on a form, running the program
does
not display the control where it is placed on the form. If two controls
in
design mode are positioned exactly at the same location from the top of
the
form, when i run the program, the controls are positioned differently.
If
the Tools/Options/HTML Designer/CSS Positioning/Positioning Options is
set to
"Absolutely positioned", then why is it not working?
How do i get it to display at run time the way it is positioned at design
time?

Also, Scott Mitchell's tutorials showed how to develop your web
application
with a STYLES.CSS file. It seemed to work OK when i first started adding
controls to a form, but now when i add a new control, it doesn't seem to
pick
up the same style pattern as the first controls did.

Another problem. I have a LOGINSTATUS control on a form, and it has a
property LogOutPageURL, but does not have a LoginInPageURL. I'm trying
to
make it so that when the user clicks on it, it takes them to a LOGIN.ASPX
form. When i run the program and click the LoginStatus control, it gives
an
error saying it can't find "/LOGIN.ASPX". I have a Login.aspx, but it is
in
a folder called "Login". I guess it can't find it because it is not in
the
main project folder. How do i tell it to look in the Login folder?

Any help that anybody can provide to resolve these issues would be
gratefully appreciated.

Thanks,
Tony



Mar 5 '07 #3

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

Similar topics

3
by: intl04 | last post by:
I was told by an instructor of Oracle SQL that an MS Access database cannot be used to have several people enter records at about the same time, that the database will "freeze up" as a result -...
12
by: Luther Hert | last post by:
While trying to work through textbook lessons for Vb.net Step by Step,Version 2003, Chapter 22, the first step is to create a new Web application Project,using the ASP.Net Application icon in the...
2
by: njr | last post by:
Having copied a number of folders from my development PC (XP) to a development server (W2003) and installed them under wwwroot (and created applications in IIS) I have problems when I include the...
9
by: eitan | last post by:
Hello, I am using Microsoft Visual Studio 2003 .NET. I have several question, please. 1) I have a connection to the database, which I create it at login, by application("conMain") (I have...
4
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
27
by: HKSHK | last post by:
Hello, I have this problem: I wrote some DLLs with VB.Net 2003 which I use with my programs. But I want to avoid that I have to go down to "DLL hell" and to copy all used dlls into each program...
11
by: AG | last post by:
Hi all, New install of VS 2005 Pro (SP1) on new machine with Windows XP Pro SP2, Core 2 Extreme Quad Core processor, 4GB RAM. Trying to debug a Web Application Project. I had no problems...
5
by: =?Utf-8?B?U2FsYW1FbGlhcw==?= | last post by:
Hi, I have a user control which I like to use in several projects (winforms) in the same solution. Inside lets say Winapp1 , When adding a reference to this control, I can dynamically or statically...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.