Financial calculations on WebForms

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
 
M

Miha Markic

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

Top