admin管理员组文章数量:1345096
I have a asp page where i am using javascript code in Edit.aspx and declared a method in it add course() as soon as the add course method is pleted the control goes to the Button click event which is in Edit.aspx.cs and after the button click is pleted the whole page refreshes
I have a asp page where i am using javascript code in Edit.aspx and declared a method in it add course() as soon as the add course method is pleted the control goes to the Button click event which is in Edit.aspx.cs and after the button click is pleted the whole page refreshes
Share Improve this question asked Jan 27, 2014 at 6:47 user3230677user3230677 2552 gold badges3 silver badges6 bronze badges 3- can u show aspx and javascript code? – Nitin Varpe Commented Jan 27, 2014 at 6:48
- if you are not doing any work in Click event on Edit.aspx.cs , just return false on client click of button. – raza rabbani Commented Jan 27, 2014 at 6:51
-
try
OnClientClick="return course();"
incourse()
method must be returntrue
orfalse
and no ajax. – Anh Tú Commented Jan 27, 2014 at 6:51
6 Answers
Reset to default 3Your question says that you are working on client side then use
OnClientClick="course(); return false;"
.
if you want to call javascript method use OnClientclick()
and if you want call both the methods use onclick event to call the code behind method i.e method in aspx.cs and inside use this code
ClientScript.RegisterStartupScript(this.GetType(), "JSScript", course());
asp web forms will always do a postback on a runat="server" button click. that is how it reaches the code behind (.cs file). for client side clicks you can either use aspx ajax or jQuery click or javascript onclick functions to prevent postbacks. For this very reason more and more asp developers are moving to asp mvc.
Try just creating a simple html button and doing and onclick to run you javascript function:
<button onclick="javascript:some_js_function();">Click Me</button>
or jQuery:
<button id="btn">Click Me</button>
in you document.ready:
$('form').on('click', '#btn', function(evt) {
evt.preventDefault();
some_js_function();
});
If you don't want to call any server side event on button click its better to use normal html
button
control.
Replace
<asp:Button id="b1" Text="Submit" runat="server" />
With
<input type="button" value="Submit">Submit</input>
In your addcourse javascript function always return false and asp:button OnClientClick="return addcourse();"
** Example **
<asp:button id="Add" runat="Server" OnClientClick="return addcourse();"/>
** JQuery **
function addcourse()
{
//your code here
return false;
}
Your button on Edit.aspx have a property runat="server" remove it and your post back stops
本文标签: javascriptHow to stop the page refresh after click on button in aspnetStack Overflow
版权声明:本文标题:javascript - How to stop the page refresh after click on button in asp.net - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784608a2538455.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论