sessionstate.asmx

来自「This is a book about vb.you could learn 」· ASMX 代码 · 共 15 行

ASMX
15
字号
<%@ WebService Class="SessionStateExample" %>

Imports System.Web.Services

Public Class SessionStateExample
  Inherits WebService

  <WebMethod(EnableSession:=true)> Public Function SetSession(key As String, item As String)
    Session(key) = item
  End Function

  <WebMethod(EnableSession:=true)> Public Function GetSession(key As String) As String
    Return Session(key)  
  End Function
End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?