test something

This commit is contained in:
kjeld Schouten-Lebbing 2021-08-15 12:46:27 +02:00
parent 12bf2fc260
commit 960f42e954
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
# 14 - Linking Apps Internally
<SCRIPT LANGUAGE="JavaScript">
function testResults (form) {
var svcdns = generatesvc(form.name.value, form.app.value, form.service.value);
alert ("Service DNS Name: " + svcdns);
console.log(svcdns)
}
function buildHexStringCommand(name, app, service) {
let svcdns = name + app + service;
return svcdns;
};
</SCRIPT>
<BODY>
<FORM NAME="frameform" ACTION="" METHOD="GET">Generate Internal DNS Name:<BR>
<input type="text" NAME="name">
<input type="text" NAME="app">
<input type="text" NAME="service">
<P>
<INPUT TYPE="button" NAME="button" Value="Click" onClick="testResults(this.form)">
#### Video Guide
![type:video](https://www.youtube.com/embed/TKh7NXjk91w)