473,386 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

This is what my hosting service said

"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You will be
able to set your .NET virtual directories through our web based control
panel. This same support is available for DotNetNuke. We support the
application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file types are
involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?
Thanks
Nov 16 '05 #1
6 1390
Hello jty202,

What they are saying is that you need to download the starter kits, and do
the compilation process yourself.

On compilation you will produce dlls in your bin directory (if using Visual
Studio). The dll contains all the code from your code behinds.

Once you have the dlls the only other thing you need are all the aspx pages
and images and so on. You don't need to upload the code behing files but
you could if you wanted.

So, they are asking you to do the compile by yourself and then upload the
dll produced along with the aspx pages.

I think ;-)

HTH

tce

"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You
will be able to set your .NET virtual directories through our web
based control panel. This same support is available for DotNetNuke.
We support the application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file
types are involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?

Thanks

Nov 16 '05 #2
That sounds about right.

You won't be able to use their compiler to
build your dlls. You'll have to do that locally.

You'll then upload your assemblies to the /bin directory,
and your aspx, ascx and other support files to
the appropiate directories.

All your pages *will* get JIT-compiled by them, though.
The net result will work as advertised : compiled pages.

Just not compiled dll's. Those you will compile yourself.

Juan T. Llibre
ASP.NET MVP
===========
"jty202" <jt****@gmail.com> wrote in message
news:u9******************@TK2MSFTNGP14.phx.gbl...
"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You will
be
able to set your .NET virtual directories through our web based control
panel. This same support is available for DotNetNuke. We support the
application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file types
are
involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?
Thanks

Nov 16 '05 #3
When I compile the code behind as dll and upload it....

Do I need to tell my webhost to register the dlls? If so, they are gonna
charge extra....

The more I think about it... the more I should stick with PHP >.. LOL
"thechaosengine" <na> wrote in message
news:43********************@news.microsoft.com...
Hello jty202,

What they are saying is that you need to download the starter kits, and do
the compilation process yourself.

On compilation you will produce dlls in your bin directory (if using Visual Studio). The dll contains all the code from your code behinds.

Once you have the dlls the only other thing you need are all the aspx pages and images and so on. You don't need to upload the code behing files but
you could if you wanted.

So, they are asking you to do the compile by yourself and then upload the
dll produced along with the aspx pages.

I think ;-)

HTH

tce

"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You
will be able to set your .NET virtual directories through our web
based control panel. This same support is available for DotNetNuke.
We support the application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file
types are involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?

Thanks


Nov 16 '05 #4

Just think of it as uploading a compiled application.
The more I think about it... the more I should stick with PHP >
Yeah, well, the 70s were great, man, weren't they ?

.. LOL
"thechaosengine" <na> wrote in message
news:43********************@news.microsoft.com...
Hello jty202,

What they are saying is that you need to download the starter kits, and
do the compilation process yourself.

On compilation you will produce dlls in your bin directory (if using

Visual
Studio). The dll contains all the code from your code behinds.

Once you have the dlls the only other thing you need are all the aspx

pages
and images and so on. You don't need to upload the code behing files but
you could if you wanted.

So, they are asking you to do the compile by yourself and then upload the
dll produced along with the aspx pages.

I think ;-)

HTH

tce

> "Although we do support the ASP.NET Starter Kits, we do not do the
> installation for you. You can run the installation file locally, then
> upload the kit. You will not be able to compile on the server. You
> will be able to set your .NET virtual directories through our web
> based control panel. This same support is available for DotNetNuke.
> We support the application, but not the installation.
>
> Please let us know if you have additional questions."
>
> -------------------------------------------------------------
>
> Questions.....
>
> What do they mean that I can't compile on the server?? What file
> types are involved (.aspx , ascx)?
>
> Now, what can and can't I do in ASP.net with this hosting service?
>
> In ASP.net which files types are (precompiled)? Which are interpreted
> (embedded wtth HTML code)?
>
> Thanks
>



--

http://texeme.com
Textcasting Technology

Nov 16 '05 #5
Hello jty202,

Your ISP shouldnt have to register the dlls. I've deployed lots of applications
on many servers and the only registering I've done - very occasionally is
when I wanted to share a single dll between two or more different applications.

Most of the time, dotnet applications are deployed in self contained folders
- including asp.net sites.

My best advice would be to "acquire" visual stuido or the web matrix application
and have a look at what it does.

Essentially the main difference between php and asp.net is that the logic
statements more often than not should go into the codebehind classes - one
code behind for each aspx page. This has the very sought after advantage
of keeping html in a UI file and logic in a logic file (*.cs, *.vb)

Get yourself a book or your going to be scratching your head a lot. Its really
not that hard though. I promise.

and it is better than php in my humble opinion. Much Better ;-)

Take Care
When I compile the code behind as dll and upload it....

Do I need to tell my webhost to register the dlls? If so, they are
gonna charge extra....

The more I think about it... the more I should stick with PHP >.. LOL

"thechaosengine" <na> wrote in message
news:43********************@news.microsoft.com...
Hello jty202,

What they are saying is that you need to download the starter kits,
and do the compilation process yourself.

On compilation you will produce dlls in your bin directory (if using

Visual
Studio). The dll contains all the code from your code behinds.

Once you have the dlls the only other thing you need are all the aspx

pages
and images and so on. You don't need to upload the code behing files
but you could if you wanted.

So, they are asking you to do the compile by yourself and then upload
the dll produced along with the aspx pages.

I think ;-)

HTH

tce
"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally,
then upload the kit. You will not be able to compile on the server.
You will be able to set your .NET virtual directories through our
web based control panel. This same support is available for
DotNetNuke. We support the application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file
types are involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are
interpreted (embedded wtth HTML code)?

Thanks

Nov 16 '05 #6
Which starter kit are you thinking of using?

The Community Starter Kit does, unfortunately, require some amount of configuration
on the server - most notably the IIS script mappings have to change in order
for .jpg and .gif requests to route to the ASP.NET runtime (some images are
served by the app from the database). Unless thier control panel supports
script map editing you'll need to find another host. Many other hosts are
familar with the startker kits and offer free installation.

HTH,

--
Scott
http://www.OdeToCode.com/blogs/scott/
"Although we do support the ASP.NET Starter Kits, we do not do the
installation for you. You can run the installation file locally, then
upload the kit. You will not be able to compile on the server. You
will be able to set your .NET virtual directories through our web
based control panel. This same support is available for DotNetNuke.
We support the application, but not the installation.

Please let us know if you have additional questions."

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

Questions.....

What do they mean that I can't compile on the server?? What file
types are involved (.aspx , ascx)?

Now, what can and can't I do in ASP.net with this hosting service?

In ASP.net which files types are (precompiled)? Which are interpreted
(embedded wtth HTML code)?

Thanks

Nov 16 '05 #7

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

Similar topics

0
by: Han Kim | last post by:
Hello, I am looking for a commercial CVS hosting service for a mid-size software development project involving about 7 developers. A commercial service similar to the CVS service that...
1
by: Bennett Haselton | last post by:
I want to get an ASP.Net hosting account with my ISP, and I'm trying to find out what level of access to the server is requried in order for me to view the server in Server Explorer in Visual...
5
by: Ammar | last post by:
Hi all.. I wonder weather you know some good and cheap ASP.NET hosting site. The only free hosting service i found was the Web Matrix site, but there are many restirctions in that site regarding...
2
by: Miguel Dias Moura | last post by:
Hello, I need to host several web sites of my clients in an ASP.net server. Can someone tell me a good service for it? I was thinking in maybe a service where I could add and delete web sites....
7
by: jty202 | last post by:
"Although we do support the ASP.NET Starter Kits, we do not do the installation for you. You can run the installation file locally, then upload the kit. You will not be able to compile on the...
2
by: Nitin Verma | last post by:
Hi All, Am new to web service technology. Currently i created a web service at my home box. Now i want to Host/Publish it to the outside world... so that it is used by my web applicantion as...
7
by: Brooke | last post by:
I am looking for some advice as to which hosting service to use for ASP.NET 2.0 and SQL Server development. I have looked at GoDaddy, BoundGrid, Interland and a few others but I still haven't made...
0
by: Kunal Pandya | last post by:
Windows Web Hosting @ $ 14.95 / Year! with FREE Domain Registration!!! + Web Control Panel + MIn. 5 Email Boxes + Packages starting from as low as 10 MB upto 50 GB dedicated hosting + Extra...
5
by: Scott | last post by:
Can anyone refer me to a good hosting provider? I'm looking for a reseller plan with PHP 5, MySql 5, 24 x 7 support, and most importantly, a solid uptime record. Customer referrals only,...
1
by: jonny | last post by:
Please recommend a good Web Hosting Service that supports ASP.NET and SQL Server. I am currently using Yahoo Web Hosting but it supports PHP and MySql. Also, a good website to get a domain name. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...

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.