Showing posts with label build. Show all posts
Showing posts with label build. Show all posts

Saturday, 27 February 2016

How to Upload ASP.Net Files to a ServerIn Feburary 2016 27,

In Feburary 2016 27,
Download and install an FTP client. FileZilla, SmartFTP or FTP Client are popular choices; however, any FTP client that you are comfortable with will suffice.
Compile your project before deploying it if you are working with the Web Application Project (WAP); this step is not necessary if you used the Web Site Project (WSP) to build your application (though it can be useful for finding compile-time errors before launching the site). Precompiling can be done through Visual Studio and the command line.
Open your FTP program. Individual FTP clients require slightly different methods to accomplish this. In FileZilla, select the “Site Manager” icon from the tool bar, then click the “New Site” button that appears and enter a name for your site. In SmartFTP, select “New Remote Browser” from the “File” menu. In FTP Client, select 'File,' then “New Connection.'
Enter the necessary information to connect your FTP client to your server. This information is usually provided by your web host provider and includes your host name (usually the part of your domain name after “www,” for example, xyz.com) or server, user name or log-in and password. Save the information. Click “Connect,” if necessary.
Click and drag the files you want to transfer from the computer side of the partition in your FTP client to the server side of the partition.
Test your site to ensure that all aspects of your application are working properly.
In Feburary 2016 27,

Wednesday, 24 February 2016

How to Attach an SQL Database to a Web PageIn Feburary 2016 24,

In Feburary 2016 24,
Determine what website functionality you wish to use the database for. Whether it be an order detail page or a product catalogue page, by determining the functionality, you know where to insert the database connection code and how to code your page to show information.
Create your database. Based on the website functionality you need, build the structure needed for your database. Refer to the 'Resources' section below for instructions on how to create a database.
Open the web page that you wish to attach a database to using your HTML editor.
Insert the database connection code in this page. The database connection code is dependent on what kind of programming code you are using for your website. Database connection codes to popular programming codes like ASP.net and PHP are listed in the 'Resources' section.
Test your database connection. Save the page that you edited and open it in your browser. If you do not see any errors posted on the page, and the information from your database is displayed, you have successfully attached a database to your web page.
In Feburary 2016 24,

Tuesday, 23 February 2016

How to Make Your Own Joomla TemplateIn Feburary 2016 23,

In Feburary 2016 23,
Launch Joomla. The interface will pull up several tabs.
Click on the template builder tab. This will drop down four settings groups. Select each setting of choice.
Below each group there will be a build template button. Once the build template button is clicked for whichever group chosen, it will load all settings in the preview link. Located in the preview and download tab.
Click on the live preview button to get a live preview of the template. It will pop up another window with the preview. To make changes, click the adjust settings button. Click build template button. Click live preview to view changes.
Click the select all button on preview and download screen. Copy and then paste the template configuration into the template_config.php file. Save file. Upload to server. This will generate the settings to the website.
In Feburary 2016 23,

Wednesday, 17 February 2016

The Advantages Disadvantages of Using Functions Procedures in Computer ProgrammingIn Feburary 2016 17,

In Feburary 2016 17,
Procedures and functions operate on the same principle of writing a small chunk of code that you can call, rather than writing the same code in multiple places in your program. This practice cuts down on program size at the very least, and often improves the readability of the program. Most programming languages contain built-in functions, and support the capability to build procedures and functions in your code.
Reduced Coding Time
An advantage of using functions and procedures is that coding time is reduced. If you only have to write a routine one time and code statements that call it, you save the time of coding the same routine multiple times, even if you opt to cut and paste the routine. The reduction in coding time helps to reduce the total project delivery time.
Reduced Debugging Time
In addition to reducing coding time, using procedures and functions help to reduce debugging time. When you put the same code in multiple places it is sometimes difficult to make debugging changes in all of those places. If you make the change in one place, but fail to make the change in the other two places it is easy to become confused. This makes it difficult to find the problem and eliminate it from every place in the program.
Maintenance Effects
The effects on program maintenance, which is the most costly of the development stages, can be both good and bad. As with debugging, if the problem is in a called procedure, then you can find it once and eliminate it quickly. However, if the programmer who wrote the code overused procedures and functions, the program can be harder to understand. The harder to understand, the longer it takes to fix a program.
In Feburary 2016 17,