关于生成节点文字路径
asp.net(c)
能实现下面这种功能吗?
'生成节点文字路径--------------------------
Function TextPath(ID)
Dim rs,sql,SortTextPath
Set rs=server.CreateObject("adodb.recordset")
sql="Select * From NwebCn_ProductSort where ID="&ID
rs.open sql,conn,1,1
SortTextPath=rs("SortName")&" → "
if rs("ParentID")<>0 then TextPath rs("ParentID")
response.write(SortTextPath)
End Function