このコードを理解するのに苦労しています。誰か助けてくれませんか? 私が間違っていなければ、XML タグを格納するためにStrStaffInfoが使用されます。
タグが XML ファイルにどのように格納されているか、またそれらのタグにアクセスする方法を知りたいです。
<script runat="server">
Public StaffInfoXML as new xmlDocument
sub Page_Load(obj as object, e as eventargs)
Dim StrStaffInfo, strConnXMLData, strConnStr, SpString as String
Dim oStaffDAW as New DAWNET.DataAccess.XMLWrapper.DAW()
Dim oConn as new ConnectionString.Access.DataBase.IO.ConnectionString
' Fetch the Connection String from Configuration File
oConn.SetPath(MapPath(""))
strConnStr = oConn.FetchConnectionString(strConnXMLData)
SpString = "StaffInformationSelect '"& Decode(LOGONUSER.ToString) &"','"& Decode(CLIENTIP.ToString) &"','"& Decode(MACHINENAME.ToString) &"'"
oStaffDAW.FetchXml(strConnStr, SpString, StrStaffInfo)
StaffInfoXML.LoadXml(StrStaffInfo)
if (StaffInfoXML.GetElementsByTagName("RECORD").Count = 0)
Response.Redirect("Application.aspx")
Response.End
End if
end sub
TagName「レコード」はどこに保存されますか? 別のタグを含めて、If 条件をチェックしたい。