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
 
Sorry for this post.
It was supposed to go to the ASP.NET newsgroup.

Leszek
 
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()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top