soapheaders.aspx
来自「This is a book about vb.you could learn 」· ASPX 代码 · 共 27 行
ASPX
27 行
<script Language="VB" runat="server">
Public Sub Page_Load()
' Create a new instance of the UsingSoapHeaders
' proxy class used to call the remote .asmx file
Dim u = New UsingSoapHeaders()
' Create a new instance of the mySoapHeader class
Dim myHeader As New MySoapHeader()
' Set the value of myHeader
myHeader.Value = "Sample Header Text"
' Set the MySoapHeader public member of the
' UsingSoapHeaders class to myHeader
u.MySoapHeaderValue = myHeader
' Get the result of the call
Dim result As String
result = u.GetValueOfSoapHeader()
span1.InnerHtml = result
End Sub
</script>
<font size="6">The value of the SOAP header is: <font color="red"><span id="span1" runat="server"/></font></font>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?