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.
我想这样使用
for (int i = 1; i <= x; i++) { string z = Request.Cookies[i.ToString()].Value; %> <td><%# Eval(z).ToString()%></td> <% }
但它不采用变量“z”。有什么办法像这样使用。在搜索中找不到这就是为什么发布。
谢谢
z.ToString() 也许?
您能确认 cookie 确实存在吗?
我建议您调查 ASP.Net 动态数据实体项目类型。即使您只创建一个示例项目并使用您从中学到的东西。