-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
helper.StartScript("table(1).cell(1,2).text=\"1112\";"); // is ok
helper.StartScript("表格(1).单元格(1,2).文本=\"1112\";");// is error
public void StartScript(string js)
{
CompiledScript cs = null;
try {
cs = script.Compile(js); // string end without '
script.RunCompiledScript(cs);
} catch (ReoScriptCompilingException ex) {
MessageBox.Show(ex.Message, "error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
Metadata
Metadata
Assignees
Labels
No labels