Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个 ...
<asp:HiddenField ID="lbWGyear" runat="server" Value='<%# Bind("Workgroup") %>' />
其中 Workgroup 是一个返回 char(3) 值的字段,例如“S1”、“S2”、“S3”等。
如何编写上述 bind() 函数以从上述值(例如“S1”中的“1”或“S2”中的“2”)返回单个字符?
谢谢
替换returnStr = returnStr.Substring(1);方法中的返回字符串Bind("Workgroup")。
returnStr = returnStr.Substring(1);
Bind("Workgroup")