Categories
Microsoft Office

How to create database in Microsoft access

How to create database in Microsoft access I have found many computer users even don’t know about the Microsoft access.So here we describe about Microsoft Access. Microsoft Access, is a relational database management system from Microsoft that combines the relational Microsoft Jet Database Engine with a graphical user interface and software-development tools. It is a […]

Categories
Sql Server

How to create a database in sql server with Tsql

How to create a database in sql server with Tsql In this post we learn How to create a database in sql server with Tsql. In this script we define where to place files(MDF,LDF) about their size and auto-growth of the database file size.And also in which file-group the file should be placed. Script:- create database test onprimary( name=N’test’, filename=N’C:\Program […]

Categories
How To Article Javascript

How to create a alert box in html through javascript

How to create a alert box in html through javascript In html through javascript you can also use alert message by the sample code present below.It is easy to use and also easy to edit. Code:- <html> <head> <script type="text/javascript"> function alert() { alert("Hightechnology!"); } </script> </head> <body> <input type="button" onclick="alert()" value="Hightechnology" /> </body> </html>

Categories
How To Article Javascript

How to show date on Html page with javascript

Here a sample code is present to show date on your html page. This is helpful for users who don’t know javascript. Code:- <html> <body> <h1>Hightechnology</h1> <p id=”hightech”>Hi</p> <script type=”text/javascript”> document.getElementById(“hightech”).innerHTML=Date(); </script> </body> </html>