我有asp.net網站,其中包括一些按鈕上的計算。當我按下按鈕時,我的計算工作正常,但首先頁面正在刷新,然後計算會在標籤上顯示。我想直接在標籤上進行計算。沒有提神。我給一些代碼。單擊按鈕時如何停止重新加載頁面?
p.s.此外Page_Load中具有接收每天的匯率
ASP
<asp:Button ID="Button1" runat="server" BackColor="#990000"
BorderColor="#333333" ForeColor="White" onclick="Button1_Click" Text="Calculate"
Width="85px" BorderStyle="Outset" style="margin-left: 20px"
ValidationGroup="grup1" />
按鈕單擊
protected void Button1_Click(object sender, EventArgs e)
{
double sayi1, sayi2, sayi3, hesap, sonuc;
sayi1 = Convert.ToDouble(Tb1.Text);
sayi2 = Convert.ToDouble(Tb2.Text);
sayi3 = Convert.ToDouble(Tb3.Text);
if (Tb1.Text.Contains(".") || Tb2.Text.Contains(".") || Tb3.Text.Contains("."))
{
...
...
...