Click here to Skip to main content
15,921,716 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima27-Apr-09 23:50
Anjani Poornima27-Apr-09 23:50 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Vasudevan Deepak Kumar28-Apr-09 0:25
Vasudevan Deepak Kumar28-Apr-09 0:25 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima28-Apr-09 0:45
Anjani Poornima28-Apr-09 0:45 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Nishant Singh28-Apr-09 1:15
Nishant Singh28-Apr-09 1:15 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima28-Apr-09 1:28
Anjani Poornima28-Apr-09 1:28 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Abhijit Jana28-Apr-09 2:18
professionalAbhijit Jana28-Apr-09 2:18 
AnswerRe: want to make a caluclator using asp.net web apllication with c# Pin
Spunky Coder27-Apr-09 23:22
Spunky Coder27-Apr-09 23:22 
AnswerRe: want to make a caluclator using asp.net web apllication with c# Pin
ddravin200028-Apr-09 2:17
ddravin200028-Apr-09 2:17 
hi! try this
first onclick of [+,-,*,/]button store the value of textbox into hidden fields and clear the value of that...

N1.Value = TextBox1.Text; // N1 is a hidden field
Sign.Value = "+"; // Sign is hidden field
TextBox1.Text = "";
and on click of [=] button use the following code

double N2 = Convert.ToDouble(TextBox1.Text);
if(Sign=="+")
TextBox1.Text = N2 + Convert.ToDouble(N1.Value);
if(Sign=="-")
TextBox1.Text = Convert.ToDouble(N1.Value) - N2;
if(Sign =="*")
TextBox1.Text = Convert.ToDouble(N1.Value) * N2;

i thinks this will help you!
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima28-Apr-09 20:21
Anjani Poornima28-Apr-09 20:21 
Questionhow to overcome "Sys.WebForms.PageRequestManager TimeOut Exception: the server request timed out ." error [modified] PinPopular
souravghosh1827-Apr-09 22:53
souravghosh1827-Apr-09 22:53 
AnswerRe: how to overcome "Sys.WebForms.PageRequestManager TimeOut Exception: the server request timed out ." error Pin
Paddy Boyd28-Apr-09 1:56
Paddy Boyd28-Apr-09 1:56 
AnswerRe: how to overcome "Sys.WebForms.PageRequestManager TimeOut Exception: the server request timed out ." error Pin
Ramesh Swaminathan28-Apr-09 2:13
Ramesh Swaminathan28-Apr-09 2:13 
Questionfile path Pin
shabya27-Apr-09 22:48
shabya27-Apr-09 22:48 
AnswerRe: file path Pin
N a v a n e e t h27-Apr-09 22:51
N a v a n e e t h27-Apr-09 22:51 
GeneralRe: file path Pin
shabya27-Apr-09 22:59
shabya27-Apr-09 22:59 
AnswerRe: file path Pin
Ramesh Swaminathan27-Apr-09 23:12
Ramesh Swaminathan27-Apr-09 23:12 
GeneralRe: file path Pin
shabya27-Apr-09 23:43
shabya27-Apr-09 23:43 
GeneralRe: file path Pin
Baran M28-Apr-09 0:10
Baran M28-Apr-09 0:10 
AnswerRe: file path [modified] Pin
shabya28-Apr-09 0:19
shabya28-Apr-09 0:19 
GeneralRe: file path Pin
Ramesh Swaminathan28-Apr-09 2:07
Ramesh Swaminathan28-Apr-09 2:07 
AnswerRe: file path Pin
Jain Vijay28-Apr-09 2:46
Jain Vijay28-Apr-09 2:46 
Questiondownload wallpapers Pin
shaludekate27-Apr-09 22:36
shaludekate27-Apr-09 22:36 
AnswerRe: download wallpapers Pin
N a v a n e e t h27-Apr-09 22:40
N a v a n e e t h27-Apr-09 22:40 
AnswerRe: download wallpapers Pin
Vasudevan Deepak Kumar28-Apr-09 0:27
Vasudevan Deepak Kumar28-Apr-09 0:27 
Questionmultiline text box width Pin
samerh27-Apr-09 21:42
samerh27-Apr-09 21:42 

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.