deploying asp.net app

R

rbutch

hey guys, i know i'm missing something simple here. but, i made a very simple form with some input that queries a oracle db and returns dataset to a datagrid.
so far so good.
and it works fine when it sits resident on the localhost.
but, when i xcopy the files to the web server and then set up a virtual directory on that machine, it seems all that shows up in explorer are the lablel tags.
none of the:
<asp:textbox id="txtLgon" Width="96px" Runat="server"></asp:textbox>

stuff like that appears.
i changed the web config from debug="true" to false
i change the configuration manager from "debug" to "release"
and pretty much followed everything that i've read on deployment.

if anyone has run into this kind of thing, i'd appreciate any info.
it's a little confusing when it runs perfectly on localhost, but drastically changes
when i deploy it.

any help is definately appreciated.
thanks
rik

**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
 
G

Guest

It sounds like .NET is not hooked up to IIS properly. This either means .NET
is not isntalled on the server, which means you must install, or it is not
properly linked into IIS (could be IIS installed/corrected after .NET
install). If the latter, try:

aspnet_regiis -i

from the proper Framework directory.
%WINDIR%/Microsoft.NET/Framework/v1.1.4322 for .NET 1.1.


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

format date(s) from sql server 2
grid scroll 2
Databinder.eval Formatting 1
CrystalReport Viewer Export in asp.net 2
Intellisense 3
ASP.NET vs VB.NET 4
FTP a text file 3
multiple instances of named argument 2

Top