Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.51 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. asp.net web service on local server
  2. <WebService(Namespace:="http://tempuri.org/")> _
  3. <WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
  4. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  5.  Public Class Service
  6.  Inherits System.Web.Services.WebService
  7.  
  8. <WebMethod()> _
  9. Public Function CalculerTaxe() As String
  10.     Dim tps As Double = 0.095
  11.     Dim tvq As Double = 0.05
  12.     Dim PrixHors As Double
  13.     Dim PrixFinal As Double = PrixHors * tps * tvq
  14.     Return PrixFinal.ToString()
  15. End Function