Skip to content

Commit 5088fa1

Browse files
Update web-forms.js
Fixed the issue of ignoring the first command after the opening bracket.
1 parent 521398a commit 5088fa1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

web-forms.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,6 +1324,9 @@ function cb_SetWebFormsValues(evt, RequestName, WebFormsValues, UsePostBack, Wit
13241324
if (FirstChar == ';')
13251325
break;
13261326

1327+
if (WebFormsList[i] == '{')
1328+
continue;
1329+
13271330
var SecondChar = WebFormsList[i].substring(1, 2);
13281331
switch (FirstChar)
13291332
{

0 commit comments

Comments
 (0)