hello,
I have asp.net application.In that application i got SMS code for sending sms from my company.The code is in VB.net.
I just want to call the sendsms() method which in Vb.net page..
How should i call dis method...???

Assume that the SendSMS method is defined as a method in 'YourSMSClass'. You can call that method as below

Dim objSMS As YourSMSClass = New YourSMSClass 
 objSMS.SendSMS ()

Here replace 'YourSMSClass ' with your SMS class name.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.