Wednesday, February 15, 2012

TEST 2

Owh my god rinie test 2...
intan tnye la sume kawan2...
dorg da ready ke?
sume gelak je...
tambh2 zila n k.su...
yela dorg kn duduk kolej smpai petang...
hurmmmm..
ok msuk kelas je madam noraini dah ltk paper kat meja masing2...
jarak2 la ...
ok...
madam tanye dah ready ke?
zila dah tergelak2...
aku x taw la dorg nie excited nk jwb kot...
hehehehe....
ok mase jwb sume pandg kertas je...
heheheh time tu aku yang nk tergelak....
pusing kiri, depan,kanan,belakang...sume same doe...:D
kite tgk je la result nnti....
hehehehe....
INTAN,AIN,ZILA,K.SU,RENTO...not including FADHLI...sbb dye x de....

ASP????? ACTIVE SERVER PAGE...

What you should already know

Before you continue you should have some basic understanding of the following:
  • HTML / XHTML
  • A scripting language like JavaScript or VBScript



What is ASP?

  • ASP stands for Active Server Pages
  • ASP is a Microsoft Technology
  • ASP is a program that runs inside IIS
  • IIS stands for Internet Information Services
  • IIS comes as a free component with Windows 2000
  • IIS is also a part of the Windows NT 4.0 Option Pack
  • The Option Pack can be downloaded from Microsoft
  • PWS is a smaller - but fully functional - version of IIS
  • PWS can be found on your Windows 95/98 CD

ASP Compatibility

  • To run IIS you must have Windows NT 4.0 or later
  • To run PWS you must have Windows 95 or later
  • ChiliASP is a technology that runs ASP without Windows OS
  • InstantASP is another technology that runs ASP without Windows

What is an ASP File?

  • An ASP file is just the same as an HTML file
  • An ASP file can contain text, HTML, XML, and scripts
  • Scripts in an ASP file are executed on the server
  • An ASP file has the file extension ".asp"

How Does ASP Differ from HTML?

  • When a browser requests an HTML file, the server returns the file
  • When a browser requests an ASP file, IIS passes the request to the ASP engine. The ASP engine reads the ASP file, line by line, and executes the scripts in the file. Finally, the ASP file is returned to the browser as plain HTML


    Ha ok....itu je yang  intan faham takat nie...ok???????

    What is JavaScript?

    What is JavaScript?

    • JavaScript was designed to add interactivity to HTML pages
    • JavaScript is a scripting language
    • A scripting language is a lightweight programming language
    • JavaScript is usually embedded directly into HTML pages
    • JavaScript is an interpreted language (means that scripts execute without preliminary compilation)
    • Everyone can use JavaScript without purchasing a license

    Are Java and JavaScript the same?

    NO!
    Java and JavaScript are two completely different languages in both concept and design!
    Java (developed by Sun Microsystems) is a powerful and much more complex programming language - in the same category as C and C++.


    What Can JavaScript do?

    • JavaScript gives HTML designers a programming tool - HTML authors are normally not programmers, but JavaScript is a scripting language with a very simple syntax! Almost anyone can put small "snippets" of code into their HTML pages
    • JavaScript can react to events - A JavaScript can be set to execute when something happens, like when a page has finished loading or when a user clicks on an HTML element
    • JavaScript can read and write HTML elements - A JavaScript can read and change the content of an HTML element
    • JavaScript can be used to validate data - A JavaScript can be used to validate form data before it is submitted to a server. This saves the server from extra processing
    • JavaScript can be used to detect the visitor's browser - A JavaScript can be used to detect the visitor's browser, and - depending on the browser - load another page specifically designed for that browser
    • JavaScript can be used to create cookies - A JavaScript can be used to store and retrieve information on the visitor's computer


    Ok sekarang...cbe try codding nie...

    <html>
    <head>
    <script type="text/javascript">
    function displayDate()
    {
    document.getElementById("demo").innerHTML=Date();
    }
    </script>
    </head>
    <body>

    <h1>My First Web Page</h1>
    <p id="demo">This is a paragraph.</p>

    <button type="button" onclick="displayDate()">Display Date</button>

    </body>
    </html> 




    Nanti dye akan displaykan cmnie...


    My First Web Page

    This is a paragraph.



    Java nie bg intan...complicated sikit la dr HTML.......

    Tuesday, February 14, 2012

    HTML???.....tajuk kecik dye...(paragraph)

    • Most HTML tags consis og beginning tag and ending tag
    • For example <HTML></HTML>  nampak x beze antara due tue...satu ade slash satu lg x de kan....law nak tutup mmg kene ade /....
    • At the top of every HTML document before anything has been typed, put :<HTML>
    • At the end of your HTML document after everything had been typed, put:</HTML>
    • Under <HTML> comes tag <HEAD>, which does not affect what in on the page but you should get it the habbit of putting it.
    • <TITLE>Practice Page </TITLE>
    • <TITLE>tags designate what will appear in the tittle bar at the top of browser
    Ape kate korg try...
    • Korg bukak note pad
    • pastu korg cbe tekan :
    <html>
    <body>
    This is my first homepage
    </body>
    </html>
    • pastu save as....file name tu korg letak name papelah....tapi mesti dot html contohnya: latihan.html
    • pastu save as type pilih...all files..
    • pastu korg g kat folder yang korg simpan tu...and klik kat latihan...atau lambang dye tu ikut kite punye web browser...mcm sye ...sye choose google....law korunk slalu gune mozila....nnti lambang folder kite tu mozilla lah :)
    • nnti bile klik...dye akn keluar This is my first homepage
    hehehe...ni la bende yang aku blajar....law korg nk try ley je....
    cbe code camnie plak

    <html>
    <body>
    <p>My name is Intan Nurfahana Azwa</p>
    <p>I am 21 years old</p>
    </body>
    </html>

    nnti kuar la cmnie:

    My name is Intan Nurfahana Azwa

    I am 21 years old

    mksud <p></p> tu paraghraph la....:D

    cbe yang nie plak...

    <html>
    <body>
    <b>HTML is easy to learn</b>
    <p>Step One</p>
    </body>
    </html>


    output nye...:


    HTML is easy to learn


    Step One

    <b></b> tu stand for break....


    lagi satu...


    <html>
    <body>
    <H1>HTML is easy to learn</H1>
    <H2>HTML is easy to learn</H2>
    <H3>HTML is easy to learn</H3>
    <H4>HTML is easy to learn</H4>
    <H5>HTML is easy to learn</H5>
    <H6>HTML is easy to learn</H6>
    </body>
    </html>


    dye akan display camnie:
    H1,2,3,4,5,6....header dye makin besar no....mkin kecik tulisan dye kn....:)



    HTML is easy to learn

    HTML is easy to learn

    HTML is easy to learn

    HTML is easy to learn

    HTML is easy to learn
    HTML is easy to learn


    Now nnti intan updates lagi ok...thanks...:D








    Thursday, February 9, 2012

    start class

    Im never expect that i will learn about the programming...
    oh god...pasal coding, html, and what so ever...
    hehehe...now i learn to be more expert in IT....
    open mindset tu 
    wow mybe my friend pon x de skill cmnie...hehehe :D 
    bangge nye mak! hehehe
    firstly, i enter the CSC317 class....sume member2 dah cuak...
    yela blaja coding...
    syukur alhamdulillah...we meet with the web master MASTER ZAIDI BIN TAWANG...
    he is weraring spectacles n kulit hitam manis...
    org nye agak brumur...dlm lingkungan 50-an dye yang ckp...
    x taw la...
    but...she is experience man....
    now...he lecture us :D....
    we happy with their class...

    today we learn about :

    Basic utk bina web : 

    1. Mesti ada perisian/ software - Adobe Dreamweaver
       - Web development Software
       - Graphic editor
       - Audio editor
       - Animation Software

    what is HTML ( Hypertext Markup Languange )
    -itu la bahasa ibunda internet....ala mcm lingua franca ...cehhh fhm ke...?

    ape cyntext...hehe macm stucture bahasa la...hahaa....itu bahase mudah ok....yg aku phm la....


    bnyak lgi...nnti aku update lg ok...



    Sunday, December 4, 2011

    study programming

    hye everyone...who r stalker me....
    now i want to share u what im study right now...
    even im study in the APLLIED SCIENCE...
    but y not in study the Codding in the internet...
    n one more thing...i would like to improve my writting in english...
    hahaha x pndai pon grammar nie...but im try k...
    rojak la....ye la dlm blog lg stu tu pon same gak....bnyak proper bm lg...

    First im attend to CSC317 class...
    me n my friends were meet with our lecturer...
    and for us he is new la kn...
    slalunye kite jumpe lect yg  mengajar bio,math,fiz,chem kn...
    itu la yang cam excited sikit...

    Then he introduce their self...
    his name is Zaidi bin Tawang...
    and he is only one lect want we call him MASTER zaidi...
    he is the web master lo...n many experiance in IT...

    so....
    we study more about practical than theory....
    so my friends n me enjoy with the class...
    ok nnti aku update lg ok...actually aku de bnyk bende nk tulis...
    tp time tu x ,mencemburui aku...hahaha
    ayat x ley blah kan...
    ok..thx 4 read :D
    nk taw cite yg intresting lg...nti i update lg ok...;)