summaryrefslogtreecommitdiff
path: root/tests/examplefiles/jbst_example1.jbst
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/jbst_example1.jbst')
-rw-r--r--tests/examplefiles/jbst_example1.jbst28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/examplefiles/jbst_example1.jbst b/tests/examplefiles/jbst_example1.jbst
deleted file mode 100644
index 0e7d014f..00000000
--- a/tests/examplefiles/jbst_example1.jbst
+++ /dev/null
@@ -1,28 +0,0 @@
-<%@ Control Name="MyApp.MyJbstControl" Language="JavaScript" %>
-
-<script type="text/javascript">
-
- /* initialization code block, executed only once as control is loaded */
- this.generateValue = function() {
- return new Date().toString();
- };
-
-</script>
-
-<%!
- /* initialization code block, executed only once as control is loaded */
- /* alternate syntax to script block above */
- this.myInitTime = this.generateValue();
-%>
-
-<%
- /* data binding code block, executed each time as control is data bound */
- this.myBindTime = this.generateValue();
-%>
-
-<%-- JBST Comment --%>
-<span style="color:red"><%= this.myBindTime /* data binding expression */ %></span>
-<span style="color:green"><%= this.myInitTime /* data binding expression */ %></span>
-
-<!-- HTML Comment -->
-<span style="color:blue"><%$ Resources: localizationKey %><%-- JBST globalization--%></span> \ No newline at end of file