如何读取从renderpartial发送的数据
在我的index.aspx页面中,我有类似的内容:
<% int tid = Convert.ToInt32(ViewData["TemplateId"]);
Html.RenderPartial("/Views/Templates/MyModule.aspx", tid); %>
how to read tid in MyModule.aspx using javascript 请帮助
谢谢
in my index.aspx page i have something like:
<% int tid = Convert.ToInt32(ViewData["TemplateId"]);
Html.RenderPartial("/Views/Templates/MyModule.aspx", tid); %>
how to read tid in MyModule.aspx using javascript
pls help
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是让 asp.net 将 tid 写为 javascript 变量
您可能希望将其输出到 HTML 的头部。
Just to have asp.net write the tid out as a javascript variable
You may want to output this in the head of your HTML.
我喜欢@Stephen的回答。
另一种选择是像这样使用 jQuery;
然后 jQuery
我将 tid 大写以指示 TID 是类名,而不是模型中的值。
I like @Stephen's answer.
Another alternative is to use jQuery like this;
then the jQuery
I uppercased tid to indicate that TID is the class name as opposed to the value from your model.