Onclick not firing

前端 未结 1 1932
礼貌的吻别
礼貌的吻别 2021-01-27 08:24

I have a set of buttons on my master page (I have attached the code below) but no onclick event is being raised. I pulled the final page source and no onclick event was present.

1条回答
  •  不思量自难忘°
    2021-01-27 08:43

    I found the issue. Here was the problem. On the master Page I had to change this:

    < script language="javascript" src="scriptLibrary.js" type="text/javascript"/>

    To this:

    < script language="javascript" src="scriptLibrary.js" type="text/javascript">< /script>

    And after that it performed a normal postback without errors.

    0 讨论(0)
提交回复
热议问题