473,498 Members | 1,972 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help! Can't create ASP.NET project

dw
Please help some desperate developers!! We need to create an ASP.NET project
via VS.NET 2003 on a networked Win 2003 server that we use for testing, but
it keeps generating an error:

"The Web server reported the following error when attempting to create or
open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server for
security reasons. We can't use LOCALHOST because we develop our apps on
central test and production boxes. At this point, people in my department
are ready to give up on .NET development because of this reason. Are there
any alternatives to FPSE? Any workarounds? PLEASE HELP -- Thank you much in
advance.
Nov 19 '05 #1
22 1526
It's a bit difficult to develop web apps on a server like that ... especially
with a restrictive admin.

If it's that critical (.NET or no .NET), just meet 'em half way and go sans
VS.NET. Remember, it's only a tool ... develop all your classes and business
logic locally, push the DLLs to the bin folder, and use your existing tool
(Dreamweaver, EditPlus, Notepad) to pound out ASP.NET.

Not ideal, but sure as hell better than doing ASP only. If you get the rest
of your team hooked, I'm sure you'll be able to get a server to develop on.

-- Alex Papadimoulis

"dw" wrote:
Please help some desperate developers!! We need to create an ASP.NET project
via VS.NET 2003 on a networked Win 2003 server that we use for testing, but
it keeps generating an error:

"The Web server reported the following error when attempting to create or
open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server for
security reasons. We can't use LOCALHOST because we develop our apps on
central test and production boxes. At this point, people in my department
are ready to give up on .NET development because of this reason. Are there
any alternatives to FPSE? Any workarounds? PLEASE HELP -- Thank you much in
advance.

Nov 19 '05 #2
dw
We had a meeting and they've decided to keep using ASP until ASP.NET 2.0
comes out. Then, depending on whether the issue of the Frontpage extensions
is resolved or not, they will determine if we'll be using that technology.

As for building .NET using something other than Visual Studio: One of the
reasons our development team wanted to use ASP.NET was the features of
Visual Studio .NET. Now the only way is to use a backdoor approach. I have
Dreamweaver, which is an excellent tool, but others in the department don't
have it. So until Microsoft uncouples FPSE from Visual Studio, we won't be
doing any ASP.NET.

"Alex Papadimoulis" <al**********@pa3.14padimoulis.com> wrote in message
news:4D**********************************@microsof t.com...
It's a bit difficult to develop web apps on a server like that ...
especially
with a restrictive admin.

If it's that critical (.NET or no .NET), just meet 'em half way and go
sans
VS.NET. Remember, it's only a tool ... develop all your classes and
business
logic locally, push the DLLs to the bin folder, and use your existing tool
(Dreamweaver, EditPlus, Notepad) to pound out ASP.NET.

Not ideal, but sure as hell better than doing ASP only. If you get the
rest
of your team hooked, I'm sure you'll be able to get a server to develop
on.

-- Alex Papadimoulis

"dw" wrote:
Please help some desperate developers!! We need to create an ASP.NET
project
via VS.NET 2003 on a networked Win 2003 server that we use for testing,
but
it keeps generating an error:

"The Web server reported the following error when attempting to create or
open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server for
security reasons. We can't use LOCALHOST because we develop our apps on
central test and production boxes. At this point, people in my department
are ready to give up on .NET development because of this reason. Are
there
any alternatives to FPSE? Any workarounds? PLEASE HELP -- Thank you much
in
advance.

Nov 19 '05 #3
You could map a drive on the server and work through the file system.

"dw" <co***************@uncw.edu> wrote in message
news:eh****************@TK2MSFTNGP09.phx.gbl...
Please help some desperate developers!! We need to create an ASP.NET
project via VS.NET 2003 on a networked Win 2003 server that we use for
testing, but it keeps generating an error:

"The Web server reported the following error when attempting to create or
open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server for
security reasons. We can't use LOCALHOST because we develop our apps on
central test and production boxes. At this point, people in my department
are ready to give up on .NET development because of this reason. Are there
any alternatives to FPSE? Any workarounds? PLEASE HELP -- Thank you much
in advance.


Nov 19 '05 #4
dw
How would you accomplish this? I thought when you create ASP.NET projects in
Visual Studio, you have to give it an HTTP address and not a network path.
Any light you can shed on this will be deeply appreciated. Thank you much.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:eO***************@TK2MSFTNGP15.phx.gbl...
You could map a drive on the server and work through the file system.

"dw" <co***************@uncw.edu> wrote in message
news:eh****************@TK2MSFTNGP09.phx.gbl...
Please help some desperate developers!! We need to create an ASP.NET
project via VS.NET 2003 on a networked Win 2003 server that we use for
testing, but it keeps generating an error:

"The Web server reported the following error when attempting to create or
open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server for
security reasons. We can't use LOCALHOST because we develop our apps on
central test and production boxes. At this point, people in my department
are ready to give up on .NET development because of this reason. Are
there any alternatives to FPSE? Any workarounds? PLEASE HELP -- Thank you
much in advance.

Nov 19 '05 #5
1. Map a drive (say x:) on the remote server to c:\inetpub\wwwroot\myproject
.. You'll need to have sufficient permissions as a user on the remote
machine - this is the hard part - try to be part of the same domain on each
machine.
2. On the local machine, In IIS Manager, create a virtual directory called
myproject and set the file location as x:\myproject.
3. Create a VS.NET project on http://localhost/myproject . The files will be
written to x:\myproject .
4. Develop your application using VS.NET on your machine. You can view the
pages on http://localhost/myproject or on http://servername/myproject .

On the remote server, you'll need to use IIS Manager to create myproject as
a Web Application.

Let us know if it works for you?

Ken

"dw" <co***************@uncw.edu> wrote in message
news:O9****************@TK2MSFTNGP11.phx.gbl...
How would you accomplish this? I thought when you create ASP.NET projects
in Visual Studio, you have to give it an HTTP address and not a network
path. Any light you can shed on this will be deeply appreciated. Thank you
much.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:eO***************@TK2MSFTNGP15.phx.gbl...
You could map a drive on the server and work through the file system.

"dw" <co***************@uncw.edu> wrote in message
news:eh****************@TK2MSFTNGP09.phx.gbl...
Please help some desperate developers!! We need to create an ASP.NET
project via VS.NET 2003 on a networked Win 2003 server that we use for
testing, but it keeps generating an error:

"The Web server reported the following error when attempting to create
or open the Web project located at the following URL:..... HTTP/1.1 500
Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server
for security reasons. We can't use LOCALHOST because we develop our apps
on central test and production boxes. At this point, people in my
department are ready to give up on .NET development because of this
reason. Are there any alternatives to FPSE? Any workarounds? PLEASE
HELP -- Thank you much in advance.



Nov 19 '05 #6
Hi,

Appart from what Ken suggested, take a look at the following KB article in
regard to the required security settings for the shares:

http://support.microsoft.com/?kbid=326495

Hope this helps
Martin Dechev
ASP.NET MVP
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:#L*************@tk2msftngp13.phx.gbl...
1. Map a drive (say x:) on the remote server to c:\inetpub\wwwroot\myproject . You'll need to have sufficient permissions as a user on the remote
machine - this is the hard part - try to be part of the same domain on each machine.
2. On the local machine, In IIS Manager, create a virtual directory called
myproject and set the file location as x:\myproject.
3. Create a VS.NET project on http://localhost/myproject . The files will be written to x:\myproject .
4. Develop your application using VS.NET on your machine. You can view the
pages on http://localhost/myproject or on http://servername/myproject .

On the remote server, you'll need to use IIS Manager to create myproject as a Web Application.

Let us know if it works for you?

Ken

"dw" <co***************@uncw.edu> wrote in message
news:O9****************@TK2MSFTNGP11.phx.gbl...
How would you accomplish this? I thought when you create ASP.NET projects in Visual Studio, you have to give it an HTTP address and not a network
path. Any light you can shed on this will be deeply appreciated. Thank you much.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:eO***************@TK2MSFTNGP15.phx.gbl...
You could map a drive on the server and work through the file system.

"dw" <co***************@uncw.edu> wrote in message
news:eh****************@TK2MSFTNGP09.phx.gbl...
Please help some desperate developers!! We need to create an ASP.NET
project via VS.NET 2003 on a networked Win 2003 server that we use for
testing, but it keeps generating an error:

"The Web server reported the following error when attempting to create
or open the Web project located at the following URL:..... HTTP/1.1 500 Internal Server Error."

People have said Frontpage Server Extensions (FPSE) have to be on that
server; however, our server admin doesn't want FPSE on our Web server
for security reasons. We can't use LOCALHOST because we develop our apps on central test and production boxes. At this point, people in my
department are ready to give up on .NET development because of this
reason. Are there any alternatives to FPSE? Any workarounds? PLEASE
HELP -- Thank you much in advance.


Nov 19 '05 #7
Thanks Martin!

Ken

"Martin Dechev" <de*******@hotmail.com> wrote in message
news:eD****************@TK2MSFTNGP14.phx.gbl...
Hi,

Appart from what Ken suggested, take a look at the following KB article in
regard to the required security settings for the shares:

http://support.microsoft.com/?kbid=326495

Hope this helps
Martin Dechev
ASP.NET MVP


Nov 19 '05 #8
dw
Thank you, Ken and Martin. I'm going to try this hopefully this afternoon
and post my results. It is much appreciated :)

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
Thanks Martin!

Ken

"Martin Dechev" <de*******@hotmail.com> wrote in message
news:eD****************@TK2MSFTNGP14.phx.gbl...
Hi,

Appart from what Ken suggested, take a look at the following KB article
in
regard to the required security settings for the shares:

http://support.microsoft.com/?kbid=326495

Hope this helps
Martin Dechev
ASP.NET MVP

Nov 19 '05 #9
dw
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:OW****************@TK2MSFTNGP11.phx.gbl...
Thanks Martin!

Ken

"Martin Dechev" <de*******@hotmail.com> wrote in message
news:eD****************@TK2MSFTNGP14.phx.gbl...
Hi,

Appart from what Ken suggested, take a look at the following KB article
in
regard to the required security settings for the shares:

http://support.microsoft.com/?kbid=326495

Hope this helps
Martin Dechev
ASP.NET MVP

Nov 19 '05 #10
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>


Nov 19 '05 #11
dw
Thanks, Ken. I'll check and let you know.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ex****************@TK2MSFTNGP10.phx.gbl...
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>

Nov 19 '05 #12
dw
Thanks, Ken. I tried the suggestions but had the same error.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ex****************@TK2MSFTNGP10.phx.gbl...
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>

Nov 19 '05 #13
dw,

Please read
http://support.microsoft.com/kb/321748/EN-US/
( After you create this page, you have to build the application )

or

http://blogs.biasecurities.com/jim/a...04/20/446.aspx
( specify “Set as Startup Project” )

Otherwise, do you have sga_test.Global
defined in your code-behind ?

i.e. do you have :

Public Class sga_test.Global
Inherits System.Web.HttpApplication

in your global.asax.vb code-behind ?

Juan T. Llibre
ASP.NET MVP
===========
"dw" <co***************@uncw.edu> wrote in message
news:Oy****************@TK2MSFTNGP14.phx.gbl...
Thanks, Ken. I tried the suggestions but had the same error.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ex****************@TK2MSFTNGP10.phx.gbl...
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>



Nov 19 '05 #14
It's almost like your project isn't being built.

"dw" <co***************@uncw.edu> wrote in message
news:Oy****************@TK2MSFTNGP14.phx.gbl...
Thanks, Ken. I tried the suggestions but had the same error.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ex****************@TK2MSFTNGP10.phx.gbl...
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view the
page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>



Nov 19 '05 #15
dw
Thank you, Juan and Ken. I'll delete the entire app from our server and
re-create it to see if I'll have better luck. Is there a way to compile an
ASP.NET app written in VB.NET from the command prompt? You think that might
resolve this issue? Thanks -- and thank you for all the answers you've been
patiently providing to me; it's much appreciated :)

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:On****************@TK2MSFTNGP10.phx.gbl...
It's almost like your project isn't being built.

"dw" <co***************@uncw.edu> wrote in message
news:Oy****************@TK2MSFTNGP14.phx.gbl...
Thanks, Ken. I tried the suggestions but had the same error.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ex****************@TK2MSFTNGP10.phx.gbl...
Make sure the Web is configured as an Application. You may need to do a
Remove and Create in IIS Manager.

Make sure that your output is going to the correct /bin directory:

1. Right-click on the project name.
2. Got to Configuration Properties > Build
3. Check the Output path value is pointing to the right place.

Let us know?

Ken
"dw" <co***************@uncw.edu> wrote in message
news:OX****************@TK2MSFTNGP12.phx.gbl...
Ken, I got it working, but I'm getting this error when I try to view
the page in the browser,

Parser Error Message: Could not load type 'sga_test.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="sga_test.Global" %>


Nov 19 '05 #16
Yes, you can compile using the command line. It will be something like this:

vbc /t:library /r:System.dll,System.Data.dll,System.Web.dll mycodebehind.vb

You may need to add more references depending on what's in your code.

Ken

"dw" <co***************@uncw.edu> wrote in message
news:u0****************@TK2MSFTNGP11.phx.gbl...
Thank you, Juan and Ken. I'll delete the entire app from our server and
re-create it to see if I'll have better luck. Is there a way to compile an
ASP.NET app written in VB.NET from the command prompt? You think that
might resolve this issue? Thanks -- and thank you for all the answers
you've been patiently providing to me; it's much appreciated :)


Nov 19 '05 #17
dw,
WHen you use code behind files .net framework expects that your
application
will have a dll file in your /bind directory. So when you try to start
the
application .net framework throw this exception because it can not found
the
needed files

So you have to rebuild your application and check ( just to be sure )
that
your .dll file is in the /bin directory
Hope it helps
Patrick
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 19 '05 #18
dw
Thank you, Ken and Patrick. I will try your suggestions and let you know.

"Patrick Olurotimi Ige" <ig*@iprimus.com.au> wrote in message
news:OP**************@TK2MSFTNGP12.phx.gbl...
dw,
WHen you use code behind files .net framework expects that your
application
will have a dll file in your /bind directory. So when you try to start
the
application .net framework throw this exception because it can not found
the
needed files

So you have to rebuild your application and check ( just to be sure )
that
your .dll file is in the /bin directory
Hope it helps
Patrick
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 19 '05 #19
dw
Ken, when I run the command line compiler on the server at its command
prompt, I get an error: "'vbc' is not recognized as an internal or external
command, operable program or batch file."

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ez**************@TK2MSFTNGP11.phx.gbl...
Yes, you can compile using the command line. It will be something like
this:

vbc /t:library /r:System.dll,System.Data.dll,System.Web.dll
mycodebehind.vb

You may need to add more references depending on what's in your code.

Ken

"dw" <co***************@uncw.edu> wrote in message
news:u0****************@TK2MSFTNGP11.phx.gbl...
Thank you, Juan and Ken. I'll delete the entire app from our server and
re-create it to see if I'll have better luck. Is there a way to compile
an ASP.NET app written in VB.NET from the command prompt? You think that
might resolve this issue? Thanks -- and thank you for all the answers
you've been patiently providing to me; it's much appreciated :)

Nov 19 '05 #20
dw
I finally ran the compiler, but still the same error when I try to run the
page. I'll keep working on it.

"dw" <co***************@uncw.edu> wrote in message
news:uS**************@TK2MSFTNGP15.phx.gbl...
Ken, when I run the command line compiler on the server at its command
prompt, I get an error: "'vbc' is not recognized as an internal or
external command, operable program or batch file."

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ez**************@TK2MSFTNGP11.phx.gbl...
Yes, you can compile using the command line. It will be something like
this:

vbc /t:library /r:System.dll,System.Data.dll,System.Web.dll
mycodebehind.vb

You may need to add more references depending on what's in your code.

Ken

"dw" <co***************@uncw.edu> wrote in message
news:u0****************@TK2MSFTNGP11.phx.gbl...
Thank you, Juan and Ken. I'll delete the entire app from our server and
re-create it to see if I'll have better luck. Is there a way to compile
an ASP.NET app written in VB.NET from the command prompt? You think that
might resolve this issue? Thanks -- and thank you for all the answers
you've been patiently providing to me; it's much appreciated :)


Nov 19 '05 #21
Easiest thing to do, is map a network drive to the share (or admin share,
using \\<webservername>\c$\inetpub\wwwroot\<projectname> )

This avoids having to use frontpage extensions, and also you will avoid
problems with caching the web application locally. So when you connect to
your application ( from the desktop) VS.net will ask if you want to open a
website or use a local path...select local path and the mapped drive that you
create.

Hope this helps, I ran into a similar problem a few months ago.
Div.

"dw" wrote:
Thank you, Ken and Patrick. I will try your suggestions and let you know.

"Patrick Olurotimi Ige" <ig*@iprimus.com.au> wrote in message
news:OP**************@TK2MSFTNGP12.phx.gbl...
dw,
WHen you use code behind files .net framework expects that your
application
will have a dll file in your /bind directory. So when you try to start
the
application .net framework throw this exception because it can not found
the
needed files

So you have to rebuild your application and check ( just to be sure )
that
your .dll file is in the /bin directory
Hope it helps
Patrick
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Nov 19 '05 #22
dw
Thanks, Div. I think with the next version of VS.NET, this problem should go
away.
"Div." <Div.@discussions.microsoft.com> wrote in message
news:B3**********************************@microsof t.com...
Easiest thing to do, is map a network drive to the share (or admin share,
using \\<webservername>\c$\inetpub\wwwroot\<projectname> )

This avoids having to use frontpage extensions, and also you will avoid
problems with caching the web application locally. So when you connect to
your application ( from the desktop) VS.net will ask if you want to open a
website or use a local path...select local path and the mapped drive that
you
create.

Hope this helps, I ran into a similar problem a few months ago.
Div.

"dw" wrote:
Thank you, Ken and Patrick. I will try your suggestions and let you know.

"Patrick Olurotimi Ige" <ig*@iprimus.com.au> wrote in message
news:OP**************@TK2MSFTNGP12.phx.gbl...
> dw,
> WHen you use code behind files .net framework expects that your
> application
> will have a dll file in your /bind directory. So when you try to start
> the
> application .net framework throw this exception because it can not
> found
> the
> needed files
>
> So you have to rebuild your application and check ( just to be sure )
> that
> your .dll file is in the /bin directory
> Hope it helps
> Patrick
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!


Nov 19 '05 #23

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

Similar topics

21
6482
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
11
2849
by: Helmut Jarausch | last post by:
Hi, entering help('rstrip') or help('ljust') into IDLE's shell window I only get no Python documentation found ...
4
3318
by: Sarir Khamsi | last post by:
Is there a way to get help the way you get it from the Python interpreter (eg, 'help(dir)' gives help on the 'dir' command) in the module cmd.Cmd? I know how to add commands and help text to...
5
2955
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig ...
3
3316
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
27
2780
by: Bruce Dodds | last post by:
I recently started using Access 2003 for the first time. I wanted to pass on some comments about the Help system to Access MVPs who frequent this board. I'm doing this in the hope that some of...
3
2424
by: stuart_white_ | last post by:
I've just upgraded from Python 2.3.3 to Python 2.4.2, and, although the new version of Python seems to be running correctly, I can't seem access the help from the interpreter. On Python 2.3.3...
9
2233
by: JJ | last post by:
Do you all use HTML help workshop to create your help system. I am finding it quite clumsy to use. Mayeb because I am not used to using it. Do any of you use any other techniques to create help...
1
6110
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
5
1497
by: PaulS | last post by:
new to Fedora7, typed python in interactive interpreter, then help(). Then modules to get a list of modules. Then module name to get info on a module but no help file. What is the help file...
0
7125
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
7004
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
7167
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,...
0
7208
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...
1
6890
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
7379
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
3095
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...
0
1423
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
657
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.