Web Connection
Inputting a number with step
<%= HtmlTextBox("txtFixed",this.page.oRounds.oData.Score01,[type="Number" step="1"]) %>
Should this work? I get a syntax error
THIS.CTL0134.EvalExpression = [ HtmlTextBox("txtFixed",this.page.oRounds.oData.Score01,[type="Number" step="1"]) ]
Is there another way to use arrows to increment and decrement singlel digit number?
THanks
Use Single quotes on the attributes definition. The problem is that the expression is generated with [ and ] delimiters and the nested brackets break that string.
<%= HtmlTextBox("txtFixed",this.page.oRounds.oData.Score01,'type="Number" step="1"') %>
+++ Rick ---