Rabu, 02 Oktober 2013

Example Project of Condition in ASP.Net

Condition on ASP.Net, there's 2 divisions: using if() and switch() using switch seems like selection program, there's the example Project: 1. Make a New Project and name it VolumeObjects, or whatever you want: 2. Insert this scripts: 3. and the output will be seen like this: you can add your menu with your style, good luck ...

Design And Validation Form ASP.Net

On this thread i want to share ASP.Net tutorial about Validation Form, follow the tutorial carefully :) 1. Make a New Project, choose Windows Forms Application, give it name FormVal or whatever do you want, locate it on your folder project. 2. On Left side you'll see the Toolbox and add any components: Label, TextBox, Button, ProgressBar and ErrorProvider. 3. And then we'll inputing scripts inside Button, with Right Click it and ...

Kamis, 19 September 2013

Example Project of Condition

this thread contained an Example Project of Condition, before following this tutorial, if you not knowing about Condition, read my post before about Condition, Array and Looping. 1. Create new HTML Document on your Site, Right Click on Site -> New File -> name it "conditional_form.html" or what ever you want. 2. Insert this in your HTML form: 3. Create new PHP Document on your site, Right Click on Site -> New File -> name it "conditional".php"...

Rabu, 11 September 2013

Condition, Array and Looping at PHP

1. Condition There's 3 way to make Condition at PHP: if, else, elseif. Every Condition starting with if : if(codition) { //do something } if included else: if(codition) { //do something } else { //do something else } else can be used to add more condition: if(codition1) { //do activity1 } elseif(condition2) { //do activity2 } else { //do other activity } *if the condition correct or true values of the existing code in the curly braces {} will be executed. 2. Array not seems like string and number only can hold a single value, array can store/save...

Rabu, 04 September 2013

Input and Output data Biodata Project ASP.NET

Read my post before about Inputing and Output data, on this Thread, i want to share about make Biodata using Input and Output, put this method and you can modify with your own style : and Run it Ctrl + F5, input your data and see the Output :) NB: this Input and Output Without TryPars...

Selasa, 03 September 2013

Input and Output on ASP.Net

There's 2 kinds of Input and Output on ASP.Net, Without TryParse() and with TryParse() 1. Without TryParse(); Try to practice it with make a New Project, you can use your old Folder project with right clicking on 'Solution' Name it 'InputOutput' and you will focused on Program.cs part of InputOutput Insert this method, or whatever with your own style and Run it Ctrl + F5, input your form and look the output 2. With TryParse(); Try to...

Comment, Variable and Type Data on ASP.NET

1. Comment 1. Function main() Include command/statement that will process with computer, example Function main() on C# languange: static void Main (string[]args) 2. Command(statement) Use for commanding computer to do specific task, example command inside C# language: Console.WriteLine("Hello World. . ."); 3. Keyword (using) If you use function Console.WriteLine(), you must give sign to computer library file which recorded Console.WriteLine()....