As I told you in your other question, it will not call the javascript function because you're using a server-side control, asp:Button.
Change the asp:Button to a normal HTML button element and you can easily call the javascript code.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script language="javascript" type="text/javascript">
function LoadJScript() {
var message = "Hello";
alert(message);
}
</script>
</head>
<body>
<form id="form1" method="post" runat="server">
<div>
<button type="button" id="Button1" onClick="LoadJScript()">text</button>
</div>
</form>
</body>
</html>