473,545 Members | 2,095 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

understanding error message

Someone please help me understand the following error message:

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

Configuration Error
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: It is an error to use a section registered as
allowDefinition ='MachineToAppl ication' beyond application level. This error
can be caused by a virtual directory not being configured as an application
in IIS.

Source Error:

Line 23: "Forms", "Passport" and "None"
Line 24: -->
Line 25: <authenticati on mode="Forms" />
Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
Line 27:

Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25
----------------------------------------------------------------------------
----
Version Information: Microsoft .NET Framework Version:1.1.432 2.573; ASP.NET
Version:1.1.432 2.573
Nov 17 '05 #1
7 1702
Leon,

It looks like the folder your .net files are in is not configured as a web
application on the server.

On the server go to:

Administrative Tools - Internet Information Services

Expand the computer node, expand the web sites node, and find your web site
in the list (It may be within the "Default Web Site" node depending on how
your machine is set up.) If the web site's icon is a folder it is not
configured as a web site.

To configure it as a web site, right click on it and choose properties.
Click the create button and then everything should be fine.

If you have added a web.config file to a folder within your main website
then that folder needs to be a website itself in order for web.config to
function properly.

I hope this helps.

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:er******** ******@TK2MSFTN GP10.phx.gbl...
Someone please help me understand the following error message:

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

Configuration Error
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: It is an error to use a section registered as
allowDefinition ='MachineToAppl ication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

Line 23: "Forms", "Passport" and "None"
Line 24: -->
Line 25: <authenticati on mode="Forms" />
Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
Line 27:

Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25
-------------------------------------------------------------------------- -- ----
Version Information: Microsoft .NET Framework Version:1.1.432 2.573; ASP.NET Version:1.1.432 2.573

Nov 17 '05 #2
Yes, it usually does. But there are some circumstances in which it does not.
If you add a web.config file to a folder it doesn't automatically make that
folder an app. Another example would be if you copy and paste the web site
files into a folder on the server. Then you would have to set up the site
yourself.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
but I though visual studios .net set-up the virtual directory and
application automatically when you create a web application inside the IDE. "S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Leon,

It looks like the folder your .net files are in is not configured as a web
application on the server.

On the server go to:

Administrative Tools - Internet Information Services

Expand the computer node, expand the web sites node, and find your web

site
in the list (It may be within the "Default Web Site" node depending on how your machine is set up.) If the web site's icon is a folder it is not
configured as a web site.

To configure it as a web site, right click on it and choose properties.
Click the create button and then everything should be fine.

If you have added a web.config file to a folder within your main website
then that folder needs to be a website itself in order for web.config to
function properly.

I hope this helps.

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:er******** ******@TK2MSFTN GP10.phx.gbl...
Someone please help me understand the following error message:

Server Error in '/solo' Application.


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

Configuration Error
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: It is an error to use a section registered as
allowDefinition ='MachineToAppl ication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 23: "Forms", "Passport" and "None"
Line 24: -->
Line 25: <authenticati on mode="Forms" />
Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
Line 27:

Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.432 2.573;

ASP.NET
Version:1.1.432 2.573



Nov 17 '05 #3
ok so if I added a folder named ulogin to my application in which all my
protected webpage and web.config file is located then ulogin folder itself
must be a web application. So how do I add an application (instead of a
folder) to my main web application inside of VS.net IDE, so I can password
protect certain pages?

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Leon,

It looks like the folder your .net files are in is not configured as a web
application on the server.

On the server go to:

Administrative Tools - Internet Information Services

Expand the computer node, expand the web sites node, and find your web site in the list (It may be within the "Default Web Site" node depending on how
your machine is set up.) If the web site's icon is a folder it is not
configured as a web site.

To configure it as a web site, right click on it and choose properties.
Click the create button and then everything should be fine.

If you have added a web.config file to a folder within your main website
then that folder needs to be a website itself in order for web.config to
function properly.

I hope this helps.

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:er******** ******@TK2MSFTN GP10.phx.gbl...
Someone please help me understand the following error message:

Server Error in '/solo' Application.


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

Configuration Error
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: It is an error to use a section registered as
allowDefinition ='MachineToAppl ication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 23: "Forms", "Passport" and "None"
Line 24: -->
Line 25: <authenticati on mode="Forms" />
Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
Line 27:

Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.432 2.573;

ASP.NET
Version:1.1.432 2.573


Nov 17 '05 #4
Leon,

If you want instead of adding a separate web.config file to your folder you
can actually use the main web.config file to protect a folder within the web
site.

I have an example on how to do this on my website: www.aboutfortunate.com.
Just search the code library for: "protect a folder with forms
authentication"

I also have a link to an article about how to use a database with forms
authentication in the library (I just added the link when I saw it posted
here).

Good luck!

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:eo******** ******@TK2MSFTN GP11.phx.gbl...
ok so if I added a folder named ulogin to my application in which all my
protected webpage and web.config file is located then ulogin folder itself
must be a web application. So how do I add an application (instead of a
folder) to my main web application inside of VS.net IDE, so I can password
protect certain pages?

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
Leon,

It looks like the folder your .net files are in is not configured as a web
application on the server.

On the server go to:

Administrative Tools - Internet Information Services

Expand the computer node, expand the web sites node, and find your web

site
in the list (It may be within the "Default Web Site" node depending on how your machine is set up.) If the web site's icon is a folder it is not
configured as a web site.

To configure it as a web site, right click on it and choose properties.
Click the create button and then everything should be fine.

If you have added a web.config file to a folder within your main website
then that folder needs to be a website itself in order for web.config to
function properly.

I hope this helps.

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:er******** ******@TK2MSFTN GP10.phx.gbl...
Someone please help me understand the following error message:

Server Error in '/solo' Application.


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

Configuration Error
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: It is an error to use a section registered as
allowDefinition ='MachineToAppl ication' beyond application level. This

error
can be caused by a virtual directory not being configured as an

application
in IIS.

Source Error:

Line 23: "Forms", "Passport" and "None"
Line 24: -->
Line 25: <authenticati on mode="Forms" />
Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
Line 27:

Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25


--------------------------------------------------------------------------
--
----
Version Information: Microsoft .NET Framework Version:1.1.432 2.573;

ASP.NET
Version:1.1.432 2.573



Nov 17 '05 #5
Leon,

Here's how I'm doing it:

'---My login page code
Private Sub btnLogin_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnLogin.Click
Try
Dim FormsAuth As New FormsAuthentica tion
If FormsAuth.Authe nticate(txtbxUs ername.Text.ToS tring,
txtbxPassword.T ext.ToString) Then
FormsAuth.Redir ectFromLoginPag e(txtbxUsername .Text.ToString,
True)End If
Catch ex As Excepion
'---Handle errors
End Try
End Sub

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:u1******** ******@TK2MSFTN GP10.phx.gbl...
so how do send use to a protect page in the application. Is this correct?
If Me.IsValid Then

If Me.myAuthorizat ion(Me.txtUsern ame.Text.ToLowe r,
Me.txtPassword. Text.ToLower) > 0 Then

System.Web.Secu rity.FormsAuthe ntication.Redir ectFromLoginPag e(Me.txtUsernam e .Text, True)

Me.Response.Red irect("../ulogin/default.aspx")

End If

End If

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:uh******** ******@tk2msftn gp13.phx.gbl...
Leon,

If you want instead of adding a separate web.config file to your folder you
can actually use the main web.config file to protect a folder within the

web
site.

I have an example on how to do this on my website: www.aboutfortunate.com.
Just search the code library for: "protect a folder with forms
authentication"

I also have a link to an article about how to use a database with forms
authentication in the library (I just added the link when I saw it posted here).

Good luck!

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:eo******** ******@TK2MSFTN GP11.phx.gbl...
ok so if I added a folder named ulogin to my application in which all my protected webpage and web.config file is located then ulogin folder itself must be a web application. So how do I add an application (instead of a folder) to my main web application inside of VS.net IDE, so I can password protect certain pages?

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
> Leon,
>
> It looks like the folder your .net files are in is not configured as a web
> application on the server.
>
> On the server go to:
>
> Administrative Tools - Internet Information Services
>
> Expand the computer node, expand the web sites node, and find your
web site
> in the list (It may be within the "Default Web Site" node depending on
how
> your machine is set up.) If the web site's icon is a folder it is

not > configured as a web site.
>
> To configure it as a web site, right click on it and choose

properties. > Click the create button and then everything should be fine.
>
> If you have added a web.config file to a folder within your main website > then that folder needs to be a website itself in order for web.config to
> function properly.
>
> I hope this helps.
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzche
> "Leon Shaw" <vn*****@msn.co m> wrote in message
> news:er******** ******@TK2MSFTN GP10.phx.gbl...
> > Someone please help me understand the following error message:
> >
> > Server Error in '/solo' Application.
>


--------------------------------------------------------------------------
> --
> > ----
> >
> > Configuration Error
> > 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: It is an error to use a section registered
as > > allowDefinition ='MachineToAppl ication' beyond application level.

This > error
> > can be caused by a virtual directory not being configured as an
> application
> > in IIS.
> >
> > Source Error:
> >
> > Line 23: "Forms", "Passport" and "None"
> > Line 24: -->
> > Line 25: <authenticati on mode="Forms" />
> > Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
> > Line 27:
> >
> > Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25
> >
> >
>


--------------------------------------------------------------------------
> --
> > ----
> > Version Information: Microsoft .NET Framework Version:1.1.432 2.573; > ASP.NET
> > Version:1.1.432 2.573
> >
> >
>
>



Nov 17 '05 #6
but what if you wanted to send the user back to a specified pade(not
RedirectFromLog inPage) which is the default.aspx?
"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP11.phx.gbl.. .
Leon,

Here's how I'm doing it:

'---My login page code
Private Sub btnLogin_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnLogin.Click
Try
Dim FormsAuth As New FormsAuthentica tion
If FormsAuth.Authe nticate(txtbxUs ername.Text.ToS tring,
txtbxPassword.T ext.ToString) Then
FormsAuth.Redir ectFromLoginPag e(txtbxUsername .Text.ToString,
True)End If
Catch ex As Excepion
'---Handle errors
End Try
End Sub

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:u1******** ******@TK2MSFTN GP10.phx.gbl...
so how do send use to a protect page in the application. Is this correct?
If Me.IsValid Then

If Me.myAuthorizat ion(Me.txtUsern ame.Text.ToLowe r,
Me.txtPassword. Text.ToLower) > 0 Then

System.Web.Secu rity.FormsAuthe ntication.Redir ectFromLoginPag e(Me.txtUsernam e
.Text, True)

Me.Response.Red irect("../ulogin/default.aspx")

End If

End If

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:uh******** ******@tk2msftn gp13.phx.gbl...
Leon,

If you want instead of adding a separate web.config file to your folder
you
can actually use the main web.config file to protect a folder within
the web
site.

I have an example on how to do this on my website:

www.aboutfortunate.com. Just search the code library for: "protect a folder with forms
authentication"

I also have a link to an article about how to use a database with
forms authentication in the library (I just added the link when I saw it

posted here).

Good luck!

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:eo******** ******@TK2MSFTN GP11.phx.gbl...
> ok so if I added a folder named ulogin to my application in which all my
> protected webpage and web.config file is located then ulogin folder itself
> must be a web application. So how do I add an application (instead
of a > folder) to my main web application inside of VS.net IDE, so I can password
> protect certain pages?
>
> "S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
> news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
> > Leon,
> >
> > It looks like the folder your .net files are in is not configured
as a web
> > application on the server.
> >
> > On the server go to:
> >
> > Administrative Tools - Internet Information Services
> >
> > Expand the computer node, expand the web sites node, and find your web > site
> > in the list (It may be within the "Default Web Site" node
depending
on how
> > your machine is set up.) If the web site's icon is a folder it is not > > configured as a web site.
> >
> > To configure it as a web site, right click on it and choose

properties.
> > Click the create button and then everything should be fine.
> >
> > If you have added a web.config file to a folder within your main

website
> > then that folder needs to be a website itself in order for web.config
to
> > function properly.
> >
> > I hope this helps.
> >
> > --
> > S. Justin Gengo, MCP
> > Web Developer
> >
> > Free code library at:
> > www.aboutfortunate.com
> >
> > "Out of chaos comes order."
> > Nietzche
> > "Leon Shaw" <vn*****@msn.co m> wrote in message
> > news:er******** ******@TK2MSFTN GP10.phx.gbl...
> > > Someone please help me understand the following error message:
> > >
> > > Server Error in '/solo' Application.
> >
>


-------------------------------------------------------------------------- > > --
> > > ----
> > >
> > > Configuration Error
> > > 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: It is an error to use a section registered

as > > > allowDefinition ='MachineToAppl ication' beyond application level.

This
> > error
> > > can be caused by a virtual directory not being configured as an
> > application
> > > in IIS.
> > >
> > > Source Error:
> > >
> > > Line 23: "Forms", "Passport" and "None"
> > > Line 24: -->
> > > Line 25: <authenticati on mode="Forms" />
> > > Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
> > > Line 27:
> > >
> > > Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config Line: 25 > > >
> > >
> >
>


--------------------------------------------------------------------------
> > --
> > > ----
> > > Version Information: Microsoft .NET Framework Version:1.1.432 2.573; > > ASP.NET
> > > Version:1.1.432 2.573
> > >
> > >
> >
> >
>
>



Nov 17 '05 #7
Leon,

..Net handles that for you. It sends the user to the original page they were
trying to go to when they were redirected to the login page.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:eU******** ******@TK2MSFTN GP12.phx.gbl...
but what if you wanted to send the user back to a specified pade(not
RedirectFromLog inPage) which is the default.aspx?
"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** *******@TK2MSFT NGP11.phx.gbl.. .
Leon,

Here's how I'm doing it:

'---My login page code
Private Sub btnLogin_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnLogin.Click
Try
Dim FormsAuth As New FormsAuthentica tion
If FormsAuth.Authe nticate(txtbxUs ername.Text.ToS tring,
txtbxPassword.T ext.ToString) Then
FormsAuth.Redir ectFromLoginPag e(txtbxUsername .Text.ToString,
True)End If
Catch ex As Excepion
'---Handle errors
End Try
End Sub

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Leon Shaw" <vn*****@msn.co m> wrote in message
news:u1******** ******@TK2MSFTN GP10.phx.gbl...
so how do send use to a protect page in the application. Is this correct? If Me.IsValid Then

If Me.myAuthorizat ion(Me.txtUsern ame.Text.ToLowe r,
Me.txtPassword. Text.ToLower) > 0 Then

System.Web.Secu rity.FormsAuthe ntication.Redir ectFromLoginPag e(Me.txtUsernam e
.Text, True)

Me.Response.Red irect("../ulogin/default.aspx")

End If

End If

"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:uh******** ******@tk2msftn gp13.phx.gbl...
> Leon,
>
> If you want instead of adding a separate web.config file to your folder you
> can actually use the main web.config file to protect a folder within the web
> site.
>
> I have an example on how to do this on my website:

www.aboutfortunate.com.
> Just search the code library for: "protect a folder with forms
> authentication"
>
> I also have a link to an article about how to use a database with forms > authentication in the library (I just added the link when I saw it

posted
> here).
>
> Good luck!
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Leon Shaw" <vn*****@msn.co m> wrote in message
> news:eo******** ******@TK2MSFTN GP11.phx.gbl...
> > ok so if I added a folder named ulogin to my application in which all
my
> > protected webpage and web.config file is located then ulogin folder itself
> > must be a web application. So how do I add an application (instead of
a
> > folder) to my main web application inside of VS.net IDE, so I can
password
> > protect certain pages?
> >
> > "S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
> > news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
> > > Leon,
> > >
> > > It looks like the folder your .net files are in is not
configured
as
a
> web
> > > application on the server.
> > >
> > > On the server go to:
> > >
> > > Administrative Tools - Internet Information Services
> > >
> > > Expand the computer node, expand the web sites node, and find
your web
> > site
> > > in the list (It may be within the "Default Web Site" node depending
on
> how
> > > your machine is set up.) If the web site's icon is a folder it

is not
> > > configured as a web site.
> > >
> > > To configure it as a web site, right click on it and choose
properties.
> > > Click the create button and then everything should be fine.
> > >
> > > If you have added a web.config file to a folder within your main
website
> > > then that folder needs to be a website itself in order for

web.config
to
> > > function properly.
> > >
> > > I hope this helps.
> > >
> > > --
> > > S. Justin Gengo, MCP
> > > Web Developer
> > >
> > > Free code library at:
> > > www.aboutfortunate.com
> > >
> > > "Out of chaos comes order."
> > > Nietzche
> > > "Leon Shaw" <vn*****@msn.co m> wrote in message
> > > news:er******** ******@TK2MSFTN GP10.phx.gbl...
> > > > Someone please help me understand the following error message:
> > > >
> > > > Server Error in '/solo' Application.
> > >
> >
>


-------------------------------------------------------------------------- > > > --
> > > > ----
> > > >
> > > > Configuration Error
> > > > 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: It is an error to use a section
registered
as
> > > > allowDefinition ='MachineToAppl ication' beyond application

level. This
> > > error
> > > > can be caused by a virtual directory not being configured as an > > > application
> > > > in IIS.
> > > >
> > > > Source Error:
> > > >
> > > > Line 23: "Forms", "Passport" and "None"
> > > > Line 24: -->
> > > > Line 25: <authenticati on mode="Forms" />
> > > > Line 26: <forms name="uloginCoo kie" loginUrl="login .aspx">
> > > > Line 27:
> > > >
> > > > Source File: c:\inetpub\wwwr oot\solo\ulogin \web.config

Line: 25 > > > >
> > > >
> > >
> >
>


--------------------------------------------------------------------------
> > > --
> > > > ----
> > > > Version Information: Microsoft .NET Framework

Version:1.1.432 2.573;
> > > ASP.NET
> > > > Version:1.1.432 2.573
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8

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

Similar topics

9
4180
by: Marty McDonald | last post by:
If I invoke a web service, and it throws an exception, I can see the exception if the client app is a .Net app. However, if the client app is not a .Net app, I only receive the HTTP 500 error. I believe this is due mostly to the fact that the non-.Net apps are using POST instead of SOAP. If the non-.Net apps were using SOAP, they too would...
13
8060
by: Manfred Braun | last post by:
Hi All, I am trying to understand the blocking method socket.Send(). The call blocks as expected, but does this mean, it returnes after the underlying TCP layer got a confirmation, that the send data was received by the socket on the remote end? Can I count on that? Do I understand TCP correctly in that, it gives confirmation ? I do not...
1
1059
by: Charlie Brookhart | last post by:
I am not understanding what the following error message is saying: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Additional information: Inconvertable type mismatch between SourceColumn 'CUS_FNAME' of String and the DataColumn 'CUS_FNAME' of Byte. I am working with an access database, and...
1
2371
by: Anonieko | last post by:
Understanding and Using Exceptions (this is a really long post...only read it if you (a) don't know what try/catch is OR (b) actually write catch(Exception ex) or catch{ }) The first thing I look for when evaluating someone's code is a try/catch block. While it isn't a perfect indicator, exception handling is one of the few things that...
9
2337
by: Rudy | last post by:
Hello All! I'm a little confused on Public Class or Modules. Say I have a this on form "A" Public Sub Subtract() Dim Invoice As Decimal Dim Wage As Decimal Static PO As Decimal Invoice = CDec(txbInv.Text) Wage = CDec(txbTotWage.Text)
2
1844
by: Greg Corradini | last post by:
Hello All, A few weeks ago, I wrote two scripts using mx.ODBC on an Access DB. Among other things, both scripts create new tables, perform a query and then populate the tables with data in a dictionary that I've uploaded from elsewhere. These scripts have run hundreds of times in the last few weeks with no problems. But recently they...
3
1577
by: Greg Corradini | last post by:
Hello, I'm trying to perform a simple insert statement into a table called Parcel_Test (see code below). Yet, I get an error message that I've never seen before (see traceback below). I've tried to put a semicolon at the end of the sql statement, but with no luck. Any ideas from more experienced mx.ODBC users? CODE TRACEBACK
11
3336
by: venkatagmail | last post by:
I have problem understanding pass by value and pass by reference and want to how how they are or appear in the memory: I had to get my basics right again. I create an array and try all possible ways of passing an array. In the following code, fun1(int a1) - same as fun1(int* a1) - where both are of the type passed by reference. Inside this...
9
2257
by: Daniel Smedegaard Buus | last post by:
Hey all :) I was wondering about the $error_types (I particularly notice the 's' suffix when reading the manual) parameter for 'set_error_handler()': Can be used to mask the triggering of the error_handler function just like the error_reporting ini setting controls which errors are shown. Without this mask set the error_handler will be...
0
7464
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7656
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7413
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7751
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5968
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
4943
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3449
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3440
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
700
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.