We have complete ASP.net application in our local web server which was created on vb.net.
Now we want to make this application work in different server , basically hand over this application to another company ?
I am planning to ZIP the folder where my application contains, which includes BIN folder also. And also WEB.CONFIG file.
So, my question is , what are the things i should ask them, whether they have all these ??
As of i know, they should have W2K / XP, IIS , .NET framework .
Please advice me !
Thanks,
NicolRather than thinking along the lines of a "hand over", you might be better considering this a "deployment" of your ASP.NET application.
With that in mind,this MSDN article walks through the deployment of an ASP.NET app to a new server.
This MSDN article talks about deploying and distributing an application.
From a business point of view, you might want to refrain from saying to either your client or the other development company, "This is what you need." If you are wrong (and there are LOTS of things to consider), then they might come back to you and argue, "Yousaid that this is all we need, but it's not!"
You might be better served listing how you developed your application (eg, framework version, language, IIS version and configuration, development environment, database, commercial or free components you used ... that sort of thing). You can tell them, quite honestly, that there is no single "right configuration or environment" they need. Just illustrate what setup *you* used and state, quite reasonably, that you cannot guarantee it will work automatically on any other setup.
As to what you put on the CD, give them everything except any components you purchased. Give them one folder called "WORKING" with all your .vb components before compilation and unflattened photoshop files and so on, and another folder called "AS DEPLOYED" that you simply copy from your Inetpub/wwwroot folder (or wherever the real directory is).
One thing to consider, and I wouldn't presume to advise you on this ... but what about the rights to use the code? If you developed, say, an email component, are you able to use the same code for your next application? Can you use code for "common components" that are not "application-specific"?
Some things to think about, anyway ...
0 comments:
Post a Comment