Postingan

Menampilkan postingan dengan label ASP

asp sintax

what the asp sintax ? If you have experience with PHP, Javascript, or ASP programming, the asp sintax almost the same with the other. However, if you only have experience with web technologies such as HTML and CSS, the ASP will be more of a challenge. How to use HTML tags to create a web page, ASP requires the tag to become a dynamic web site. This tag is used in a typical HTML tags, so make sure you see the difference between the tag and used for ASP tag that is used for HTML. Below is our ASP scripts used in previous studies. what the asp sintax ? Response.Write("Hello Me") %> These special tags will always encapsulate your ASP code. Some things about the ASP tag that sets it apart from normal HTML tags: 1. An opening ASP tag is 2. A closing ASP tag looks like %> while an HTML tag normally looks like 3. ASP code can occurr anywhere, even within an HTML tag opening tag like this: code asp: ">Home the explorer will display Home what the asp sintax ?

First ASP Script

First ASP Script Before we learn more about programming ASP, we run the ASP script is very simple to check whether the installation of IIS and ASP, which is functioning properly. Open a text editor and write the following ASP code and save with the name "firstscript.asp." Be sure to save this file to the directory "tizagASP" as was mentioned in the previous lesson, Running ASP. Launch Internet Explorer and type the following into the address bar: Internet Explorer will Display: Hello Me ...then you've got all the file saving and running mumbo jumbo figured out and you can start focusing on learning ASP! Now let's continue! First ASP Script

RUNNING ASP

If you do not know where to save the file and how asp files from your ASP pages, this lesson will guide you through the process to run asp the first time. After IIS is installed correctly, the next step is complete and you must save your ASP files in a special location on your hard drive: Inetpub directory that is specific. Follow these steps to navigate to this directory: 1. Open up "My Computer" or "Windows Explorer" so that you can view your system's files and directories. 2. Select and Open the C drive (C:) 3. Double click the Inetpub folder 4. Double click the wwwroot folder - The full path to this location is "C:\Inetpub\wwwroot" for you advanced users 5. Within the wwwroot directory locate the "localstart.asp" file. This is the same file you saw after completing the installation in the previous lesson. Your ASP files will have to go into this wwwroot directory or a contained sub-directory to run properly. This tutorial will refer to th...

collection of articles asp

Collection of articles asp Tricks of Writing ASP Scripts Running ASP First ASP Script asp sintax User Login Using the ASP Session Convert an ASP application to Perl

Tricks of Writing ASP Scripts

The following are tricks to write the good script ASP, so the application can be run properly. Trik #1 : Response.Buffer = TRUE This will lead to an ASP script will be stored in a buffer in the server and processed, if all processes have been completed, the new data will be sent to a client. This is to accelerate the execution of the overall ASP script. Trik #2 : @ENABLESESSIONSTATE = FALSE Do not use if the session is not necessary. Most web applications are rarely session requires. The use of web session will be slow because the process requires memory and a larger than if no session. By default, IIS provides session on each script executed. To turn them off, writing in the first line of each script. Trik #3 : Use adovbs.inc or adojavas.inc adequate File adovbs.inc and adojavas.inc amount of about 14 Kb. If the file is in the script include in each, will slow server, although the difference is small. Take meant only as needed, you do included if not needed. Usually that is needed in...

Get IP Address

Teknik di bawah ini adalah untuk mengecek IP address dari sebuah komputer: code dibuat sangat sederhana, sehingga mudah dipelajari khususnya bagi yang baru belajar dari NOL . Tambahkan winsock: Add Microsoft Winsock Control 6.0 component Insert 1 Textbox Insert 2 Command Buttons Rename Caption as Display and Clear Private Sub Command1_Click() 'command button If Text1.Text = "" Then Command1.Enabled = False Text1.Text = Winsock1.LocalIP Else Command1.Enabled = True End If End Sub 'end command Private Sub Command2_Click() 'comamnd Text1.Text = "" If Text1.Text = "" Then Command1.Enabled = True Else Command1.Enabled = False End If End Sub 'end command Private Sub Form_Load() Text1.Text = "" If Text1.Text = "" Then Command1.Enabled = False Else Command1.Enabled = True End If Text1.Text = Winsock1.LocalIP End Sub Ilmu Visual Basic (catatan :bukan isi sebenarnya) masuk kesini

Belajar Active Server Page (ASP) dari NOL

Gambar
Mempelajari ASP tidaklah sesulit seperti yang dibayangkan oleh kebanyakan pemula. Kunci utama adalah rajin dan tekun, Teori yang didapat tanpa diiringi dengan latihan akan percuma. Oleh karena itu, latihan harus mendapat porsi yang besar. Blog ini akan menuntun anda untuk belajar ASP , blog ini direncanakan khusus untuk pemula yang baru mau mulai belajar programing ASP alias dari NOL . Untuk memudahkan dalam mempelajari tutorial ini, maka pokok bahasan dibagi dalam 2 kelompok, yaitu: Tutorial Contoh-contoh program aplikasi yang dibuat dengan ASP . (Belajar Active Server Page (ASP) dari NOL, Belajar Programming) (Blog ini masih dalam pengembangan) Home Active Server Page (ASP) Tutorial ASP Contoh-contoh program ASP