Prepare Functionality And Technical Documentation
Oct 4, 2010
I ve completed a web application and now i want to prepare functionality and technical documentation for the same. But i ve never done such documentations. Can someone provide how to prepare such documentations.
View 2 Replies
Similar Messages:
Dec 21, 2010
I landed on a job to continue working on exisiting asp.net 3.5 application using Visual Studio 2008. The former .net developer is no longer around and I have to dig into the application code to understand how the app works( workflow, logic, etc...)I have added new development to the existing application and enhanced existing pages. Now, I need to provide Technical documentation for the application so any new developer comes onboard will not struggle enhancing the app or do new development following the same methodology . Q1. What is the best approach to provide technical documentation.I thought of the following
View 1 Replies
Apr 27, 2010
I have the domain name and space and also prepared my website on visual studio. now i want to know how to make it ready, so that i can copy it the hosting server. means what is the prerequisite for hosting? and then how to publish it?
View 1 Replies
Feb 3, 2011
I have an asp.net application that I currently deploy to 4 different environments on the client's servers. At the moment we deploy by copying over individual assemblies and content files but the whole process is time consuming and error prone. Basically I'd like a method of preparing the application for deployment that will give me a folder containing the application (no source code etc). No IIS changes are required. It would be good if I could specify different webconfigs for different environments.
I've looked at msbuild, msdeploy, etc and I'm not even sure which is the right tool for the job. I'm tempted to go with a batch file that copies only certain file extensions but I'm sure there must be a better way of doing this.
View 1 Replies
Mar 15, 2011
i am new this preparing a technical specifation document explain me how write a techical specification document.
View 4 Replies
Aug 26, 2010
I have just started learning C#. Can anyone explain the technical differences between a .Net desktop application and a web application? I mean for example, if I have a simple HelloWorld application using a WinForm, what are the steps required to change that into a HelloWorld web application?
View 5 Replies
Aug 26, 2010
How to prepare the ASP.NET MVC Controllers to use Session and at the same time be testable, so in essence not use Session but rather use some Session abstraction? I am using Ninject so your examples could be based on that.
The problem is that the Session object is not available at all times in the controllers (like in ctor's) but I need to store something to the Session at application start (the global.asax.cs also does not have access to the Session).
View 4 Replies
Aug 23, 2010
I have a select query which is executing well. Now, I want to add one more field to that query. That field is not in the current query table, It is in the another table.
How do I join those two tables and get that field value in the existing select query.?
View 5 Replies
Aug 30, 2010
I'll soon be managing a fleet of ASP.NET webservers...
What are the technical limitations with deploying an ASP.NET webserver? Can I just copy the file(s) over, restart the website, and I'm good to go?
Is this any different than what VS2010's "deploy" does?
Does it matter what "type" of project I have: a Web Site or a Web Application?
View 2 Replies
May 31, 2010
Is there a technical/performance limit on the number of roles an application handles? I'm in the process of designing an application which I forsee having a lot of roles created, to be able to handle the degree of granularity the system should have (e.g., permissions per project, where there could be a lot of projects).
Would you recommend another approach other than using roles for this kind of granularity?
View 1 Replies
Jul 24, 2010
I'm looking for detailed technical information on the compilation process for aspx pages and vs2008.Recently I have been learning about controlbuilders and pageparserfilters. I have downloaded some code to clean out extra white spaces in my html in order to make the pages smaller. The code works great, but I don't understand WHY it works. I need to learn more about the page compilation process.
View 1 Replies
Apr 12, 2010
I have following in many controls:
<asp:ControlParameter Name="SvcCluster_Id" ControlID="frmConfigEdit$ddlCluster" PropertyName="SelectedValue" />
Everything was good before I bumped into the problem when declarative binding (SelectedValue='<# Bind("SvcCluster_Id") >') produced the error, because value has not been found in the list. So i moved binding to the code:
protected void frmConfigEdit_DataBound(Object sender, System.EventArgs e)
{
if (frmConfigEdit.CurrentMode == FormViewMode.Edit)
{
var svcCluster_id = DataBinder.Eval(frmConfigEdit.DataItem, "SvcCluster_id");
var ddlCluster = (DropDownList)frmConfigEdit.FindControl("ddlCluster");
if (svcCluster_id != null && ddlCluster.Items.FindByValue(svcCluster_id.ToString()) != null)
{
ddlCluster.SelectedValue = svcCluster_id.ToString();
}
}
}
But now seems like this happens later than ObjectDataSource tries to access frmConfigEdit$ddlCluster...
How to manage this?
I wouldn't like to move everything to the code (I mean creating Control parameters, etc)
p.s. Oops, actually it works ok for DataBound event! Sorry.
View 2 Replies
Mar 26, 2010
i need step by step procedure to prepare crystal report through Data set
View 5 Replies
Apr 15, 2010
We are developing a very complex eCommerce portal using asp.net c# and the client asked us to make the documentation very similar (look & feel) with ebay api documentation http://developer.ebay.com/DevZone/shopping/docs/CallRef/GetSingleItem.htmlhat kind of tool they are using and if not do you know anything that can be configured to produce a similar result ?
View 1 Replies
Jan 23, 2011
Now that ASP.NET MVC 3 with the new Razor engine has been officially released, is there any official documentation for it?The question asp.net mvc3 razor documentation? has some good links to introductory texts. But I'm looking for a reference documentation that contains a complete description of all @keywords.
View 2 Replies
Mar 24, 2011
I am developing Asp.Net C# project. I need to prepare documentation for that. Which include Architectural Design,Database and Class diagrams for our project. I searched many sites but I didnt find any perfect template for it. i want to find nice template for the documentation.
View 2 Replies
May 19, 2010
I'm looking to find more information about the AJAX AnimationExtender - I get the impression that it is a quite powerful framework, but there is only 1 very simple example on the AJAX pages, and a server-side coding reference. I would like to know where I can get a more detailed explanation of using the AnimationExtender, that might cover more comprehensively all the XML options that are available, and how to carry out Javascript routines - does anybody know where this sort of resource might be found. Presumably they do want us to use the controls to their maximum, but the documentation I have been able to find so far seems quite inadequate. For example, I would like to know how to pause an AE animation, but I cannot find a single example anywhere!
View 3 Replies
Jul 8, 2010
I am new to .NET Programming language. I am working on developing couple of applications using VS2005.My company is a startup company and I am the only developer, so we don't have any standard documentation formats/templates.But I need to use few documentation templates like I need to write functional documentation and technical documentation.Is there any specific template provided by Microsoft or
View 4 Replies
Feb 28, 2010
I've just come across these in MVC, and would like to use them instead of tables sometimes,as tables and DIV's just don't mix well!Never seen these before,and was wondering if there is any documentation about these new table-substitute TAGs? I've also heard recommendations to use these as opposed to tables and would therefore like to familiarize myself with them properly (as opposed guessing how they work as I have been recently).
View 2 Replies
Jan 5, 2011
I would like to include a word document, and unused program files in a folder as part of my project, but I don't want it compiled, etc. How is the best way to do this?
View 1 Replies
Oct 29, 2010
Been trying to find documentation on the accordion control. Was wondering if it's possible to have all the Accordion Panes collapsed when the web page loads?
View 5 Replies
Sep 15, 2010
the format of how to make and analyse database documentation.
View 1 Replies
Mar 31, 2010
It looks like the final release for ASP.NET MVC 2 has been already around for 2 weeks. Unfortunately, I can't find documentation that's intended for MVC 2 exclusively. I've checked Amazon.com (no book yet on MVC2), ScottGu's Blog (only 2 short posts), ASP.NET/MVC website (they've only posted what are alreadi in the ScottGu's blog).
View 4 Replies
Mar 27, 2010
free sipmle cms for internet shop with documentation? i downloaded nopcommerce but there no free documentation
View 2 Replies
Feb 21, 2011
I've just installed ASP.NET version 4.0 and I'm trying to find the local help for it.
(IOW: Accessing help with Document Explorer).
OS is Win XP (updated).
Looking in: Start > All Programs
I do not see an entry for Microsoft .NET Framework SDK v4.0
I do see the old entry for Microsoft .NET Framework SDK v2.0
I've always accessed local help with the following shortcut:
"C:Program FilesCommon FilesMicrosoft SharedHelp 8dexplore.exe" /helpcol ms-help://MS.NETFramework.v20.en /LaunchNamedUrlTopic DefaultPage /usehelpsettings NETFrameworkSDK.20
How do I get this to work for version 4.0?
... or ...
Did something go wrong with the install?
View 2 Replies