我可以手动将用户ID U078058放入xml src并显示他的电话号码
<xml id="XmlUserInfo2" src="http://{ServerName}/common/components/userinfo/UserInfoXml.asp?UserID=U078058"> </xml>
<p>
phone number: <span datasrc="#XmlUserInfo2" datafld="telephoneNumber" dataformatas="html"></span>
</p>
现在不是手动将用户ID放在xml src中,而是想将用户id从textbox传递给xml src。 这会有用吗?
<asp:TextBox ID="textUID" runat="Server">U078058</asp:TextBox>
<xml id="XmlUserInfo2" src="http://{ServerName}/common/components/userinfo/UserInfoXml.asp?UserID=textUID"> </xml>