deploying asp.net app

  • Thread starter Thread starter rbutch
  • Start date Start date
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...
 
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!
***************************
 
Back
Top