Financial calculations on WebForms

  • Thread starter Thread starter Leszek
  • Start date Start date
L

Leszek

Hello,

I need to do some financial calculations on my ASP.NET forms. Under Visual
Basic it was pretty straightforward - I just used built-in functions such as
PV() (principal value) or PMT().
How can I access those functions under .NET and display them on ASP.NET
forms?

Any ideas?
Thanks,
Leszek Taratuta
 
Hi,

No problem.
They are still there in Microsoft.VisualBasic namespace.
Supposing that you have a label1 on asp.net form, just do something like:

label1.Text = PV(..., ..., ..).ToString()
 
Back
Top