Click here to Skip to main content
15,894,017 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Not sending Email Pin
N a v a n e e t h29-Apr-09 2:29
N a v a n e e t h29-Apr-09 2:29 
GeneralRe: Not sending Email Pin
D.K.C1-May-09 2:27
D.K.C1-May-09 2:27 
AnswerRe: Not sending Email Pin
Goalie3529-Apr-09 8:54
Goalie3529-Apr-09 8:54 
QuestionProblems with SMTPMail attachments Pin
ddepauli29-Apr-09 1:19
ddepauli29-Apr-09 1:19 
AnswerRe: Problems with SMTPMail attachments Pin
Abhijit Jana29-Apr-09 1:22
professionalAbhijit Jana29-Apr-09 1:22 
GeneralRe: Problems with SMTPMail attachments Pin
ddepauli29-Apr-09 1:29
ddepauli29-Apr-09 1:29 
QuestionRe: Problems with SMTPMail attachments Pin
Vasudevan Deepak Kumar29-Apr-09 1:29
Vasudevan Deepak Kumar29-Apr-09 1:29 
QuestionHow to build a caluclator using asp.net web application Pin
Anjani Poornima29-Apr-09 1:11
Anjani Poornima29-Apr-09 1:11 
Sorry guys.....

I already posted this question.

This time i like explain clearly what i done and where i am getting problem.

I built a caluclator in .aspx page with button which look exacltly like a real caluclator.

It works fine until taking number into textbox when i click the number button

But when i click the = button the result is not displayed

i am keeping my code here....plz help me

protected void btnplus_Click(object sender, EventArgs e)
{
valholder1.Value = txtcal.Text;
sign = "+";
txtcal.Text = "";


}

protected void btnequal_Click(object sender, EventArgs e)
{
valholder2 = Convert.ToDouble(txtcal.Text);
if (sign == "+")
txtcal.Text = Convert.ToString(valholder2 + Convert.ToDouble (valholder1));

}

Here i took the valueholder1 and valueholder2 to store the values
and i want to display the result in textbox

plz help me.........

Thanx in advance
AnswerRe: How to build a caluclator using asp.net web application Pin
Vasudevan Deepak Kumar29-Apr-09 1:28
Vasudevan Deepak Kumar29-Apr-09 1:28 
QuestionValidate the sum of textbox Pin
Girish48129-Apr-09 0:43
Girish48129-Apr-09 0:43 
AnswerRe: Validate the sum of textbox Pin
J a a n s29-Apr-09 0:53
professionalJ a a n s29-Apr-09 0:53 
GeneralRe: Validate the sum of textbox Pin
Girish48129-Apr-09 1:00
Girish48129-Apr-09 1:00 
GeneralRe: Validate the sum of textbox Pin
jai_10129-Apr-09 1:06
jai_10129-Apr-09 1:06 
GeneralRe: Validate the sum of textbox Pin
Girish48129-Apr-09 1:25
Girish48129-Apr-09 1:25 
NewsNew features on ASP.NET 4.0 Pin
saanj29-Apr-09 0:37
saanj29-Apr-09 0:37 
GeneralRe: New features on ASP.NET 4.0 Pin
Rolando CC29-Apr-09 4:11
professionalRolando CC29-Apr-09 4:11 
QuestionExport HTML to DOC/PDF with header and footer Pin
Member 398136629-Apr-09 0:29
Member 398136629-Apr-09 0:29 
QuestionHow to run an .exe from asp.net page Pin
Anjani Poornima29-Apr-09 0:28
Anjani Poornima29-Apr-09 0:28 
AnswerRe: How to run an .exe from asp.net page Pin
Murugesan G29-Apr-09 0:34
Murugesan G29-Apr-09 0:34 
AnswerRe: How to run an .exe from asp.net page Pin
Abhijit Jana29-Apr-09 0:45
professionalAbhijit Jana29-Apr-09 0:45 
GeneralRe: How to run an .exe from asp.net page Pin
Anjani Poornima29-Apr-09 1:03
Anjani Poornima29-Apr-09 1:03 
GeneralRe: How to run an .exe from asp.net page Pin
Abhijit Jana29-Apr-09 1:20
professionalAbhijit Jana29-Apr-09 1:20 
GeneralRe: How to run an .exe from asp.net page Pin
Sreekumar P P29-Apr-09 2:31
Sreekumar P P29-Apr-09 2:31 
GeneralRe: How to run an .exe from asp.net page Pin
Abhijit Jana29-Apr-09 2:45
professionalAbhijit Jana29-Apr-09 2:45 
QuestionError:There is no source code available for the current location. show disasembly Pin
snehasish29-Apr-09 0:23
snehasish29-Apr-09 0:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.