Question
Virtusa Corporation US
US
Last activity: 26 Sep 2019 17:40 EDT
How to run javascript from robotics automation
How to execute the below mentioned javascript on button click
<script>
function myFunction() {
window.open("https://www.w3schools.com");
}
</script>
I tried to run the below mentioned c# code, but i am not able to add referrence for ScriptManager
How to execute the below mentioned javascript on button click
<script>
function myFunction() {
window.open("https://www.w3schools.com");
}
</script>
I tried to run the below mentioned c# code, but i am not able to add referrence for ScriptManager
Page.ClientScript.RegisterStartupScript(this.GetType(),"CallMyFunction","MyFunction()",true)