Which files on server ?

  • Thread starter Thread starter Tommy
  • Start date Start date
T

Tommy

Hi

I've uploaded the .aspx files and Web.config file made in
VS.NET 2003 but I get this error http://empty-
site.org/Login.aspx . I did change the config file as
mentioned but with no luck . can somebody help ?

TIA

Tommy
 
Did you upload the \bin directory too? This is where the compiled dll for
the code behind is located in.

Another posibility: maybe the web.config contains an error. Can you run the
application on your local machine?

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Hi Jan

Thanks for helping out ! Yes I can run it locally and no
I did not upload the bin folder, do I have to upload all
the bin folder or just the .dll files ?

TIA

Tommy
 
Acutally the dll's are enough. If you want additional information (e.g. the
source code) when an exceptions happens, you can also copy the pdb file.

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Hi Again Jan

I tried that with no succes, do you by any chance have
ICQ, Yahoo messenger or MSN messenger? I would be very
glad if you could help a totally newbie with this

TIA

Tommy
 
Can you first try copying the complete folder, including the \bin folder and
all files? If that doesn't work either we'll have to dig deeper... :-)

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Sure

Now the folder with all the files are on the remote
server, the name of the server is HelloWeb_vb. The reason
for the name is that I try to follow a lesson in Sams
Teach Yourself MS VS .Net 2003. The folder contains 2
aspx files (pages) a Login.aspx and a Success.aspx and I
try to wiev the Login.aspx this way http://empty-
site.org/HelloWeb_vb/Login.aspx but with no luck

TIA

Tommy
 
Did you set the CustomErrors mode to Off?
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

Another question: is the website or virtual directory configured as an
ASP.NET site (script execute permissions)?

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Thanks Jan

Yes i put the CustomError in the webconfig file an put it
to off. But see .... if the site is configured as ASP.NET
is another case. I'm not sure! Please bare with me I'm a
total newbie in this. The folder is made in MS VS NET
2003 so I guess that the folder at least is configured to
ASP.NET. in my wwwroot folder is a folder asp_net client
or something like that, now I don't know but should I
place the folders inside this folder ? The remote server
is at my ISP

TIA

Tommy
 
Ok, for example you've created a project MyProject. In your wwwroot on your
local drive there is a folder \MyProject. You should copy all of contents to
your hosting provider's directory (not in the aspnet_client directory). Make
sure your ASP.NET is enabled, maybe you could check this by contacting your
hosting provider.

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Back
Top