Categories
Asp, Asp.net

How to send a FAX from ASP page

How to send a FAX from ASP page This article describes how to use Microsoft Fax Service to send a fax from an Active Server Pages (ASP) page. The Microsoft Fax Service includes Component Object Model (COM) interfaces that expose functionality that is contained in the Faxcom.dll file. By making calls to Faxcom.dll, you can […]

Categories
Javascript

For Loop in javascript

How to use a for loop in javascipt Hi Guys, in this tutorial i will let you now how to use a for loop in javascript.This if very helpful in web application development. Code:- <html> <body> <script type="text/javascript"> var i=0; for (i=1;i<=10;i++) { document.write("Number " + i); document.write("<br />"); } </script> </body> </html>

Categories
How To Article Javascript

How to use If Else condition in Javascript

How to use If Else condition in Javascript 1. if statement – use this statement to execute some code only if condition is true then else condition is excluded. 2. if…else statement – use this statement to execute some code when if condition is wrong on this condition else code run. Code:- <script type="text/javascript"> var […]

Categories
SAP

How to Create ABAP Program to Print Hello World

How to write ABAP program to Print Hello World.  1)      From the SAP initial screen provide transaction code   /NSE38 and press Enter.        2)     We will get ABAP Editior: Initial Screen.                3)     To Create program provide any name in program text box starting from z or […]