Posts mit dem Label Components werden angezeigt. Alle Posts anzeigen
Posts mit dem Label Components werden angezeigt. Alle Posts anzeigen

Donnerstag, 18. Februar 2016

How Do Websites Work?In Feburary 2016 18,

In Feburary 2016 18,
Websites are essentially a group of associated files that are displayed through a web browser. Web browsers can read various types of programming languages; however, the most common websites are written in hypertext markup language (HTML) and are parsed and displayed via a web browser. The simplest website can be one HTML file, while more advanced websites can consist of an infinite number of interrelated files.
Components of a Website
HTML is essentially a structure-based language. That is, people can place the content that they wish to display in an HTML file. Further, they can expand their website by placing links within the HTML file to other files or web pages. In order to take care of the design aspect of a website, a CSS file (cascading style sheet) must be created. This CSS file can change design aspects of a website including color, font style and position of images. A link to the CSS must be placed in the HTML file.
Publishing a Website
Once the HTML files and CSS file have been created, they must be transferred somewhere in order to be published and viewable via the web. In order to publish your website, you will need to upload the files of your website to a web server. This is essentially a hard drive that is interfaced via the Internet. You can gain access to a web server through a web hosting service (see Resources). The web hosting service will also provide you with a URL, which is a permanent location where your site can be accessed. Your main page, or your homepage, should be renamed to index.html. This will be the page that the web server will display when your URL is entered into a web browser.This describes the most basic way that a website works. You create files, upload them to a web server, and view them through a URL. There are, however, much more complex database-driven websites that may function differently.
In Feburary 2016 18,

Dienstag, 9. Februar 2016

How to Host ASPX PagesIn Feburary 2016 09,

In Feburary 2016 09,
Click the Windows 'Start' button and select 'Control Panel.' Double-click the 'Add/Remove Programs' icon. A window opens and displays all the currently installed software on the computer.
Click the 'Windows Components' tab. This lists all the operating system-specific applications.
Check the box that is labeled 'Internet Information Services' and click the 'Install' button. This installs the IIS server. Reboot your computer for changes to take effect.
Configuration
Double-click the 'Administrative Tools' icon in the Control Panel. Double-click the newly created 'Internet Information Services' icon to open the configuration screen.
Right-click the default Web server icon and select 'Properties.' This opens a new window that is used to set the ASP framework version. For most installations, ASP 2.0 is used.
Click the 'Directory' tab. In this window, click the 'Configuration' button. This opens a window that displays the current ASP.NET information. Select the version from the drop-down box and click 'OK.'
Close the main configuration window. IIS is now configured to host ASPX files.
In Feburary 2016 09,