如何读取从renderpartial发送的数据

发布于 2024-08-13 22:42:12 字数 258 浏览 8 评论 0原文

在我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

停顿的约定 2024-08-20 22:42:12

只是让 asp.net 将 tid 写为 javascript 变量

<% int tid = Convert.ToInt32(ViewData["TemplateId"]);
  Html.RenderPartial("/Views/Templates/MyModule.aspx", tid); %>

<script type="text/javascript">
    var tid = <%= tid.ToString() %>
</script>

您可能希望将其输出到 HTML 的头部。

Just to have asp.net write the tid out as a javascript variable

<% int tid = Convert.ToInt32(ViewData["TemplateId"]);
  Html.RenderPartial("/Views/Templates/MyModule.aspx", tid); %>

<script type="text/javascript">
    var tid = <%= tid.ToString() %>
</script>

You may want to output this in the head of your HTML.

蹲在坟头点根烟 2024-08-20 22:42:12

我喜欢@Stephen的回答。

另一种选择是像这样使用 jQuery;

Html.RenderPartial("/Views/Templates/MyModule.aspx", tid, new { @class='TID'});

然后 jQuery

var tid = $('.TID').val();

我将 tid 大写以指示 TID 是类名,而不是模型中的值。

I like @Stephen's answer.

Another alternative is to use jQuery like this;

Html.RenderPartial("/Views/Templates/MyModule.aspx", tid, new { @class='TID'});

then the jQuery

var tid = $('.TID').val();

I uppercased tid to indicate that TID is the class name as opposed to the value from your model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文