如何将值/字符串从后面的代码拉到.aspx页面

本文关键字:代码 页面 aspx 字符串 | 更新日期: 2023-09-27 18:12:43

大家好,我在

后面的代码中有这些代码
       //a == the viewing month
       //b == the x or 1 which will be use to add or subtract depending on the action
       //c == the previous month
       //d == the next month
       int a = int.Parse(actual.Text);
       int b = int.Parse("1");
       int c;
       int d;
       c = a - b; //This provides the previous month for the link
       d = a + b; //This provides the next month for the link

现在在页面加载时,我想将"c"answers"d"的值拉到我的.aspx页面中的锚中。我已经尝试了很多事情,但我不能得到正确的,这是可能的吗?如果有,那是怎么回事?

谢谢

如何将值/字符串从后面的代码拉到.aspx页面

如果你想在页面中使用这些数字,你必须将它们声明为protected,并确保它们是在页面上声明的,而不是在你的方法中。您可以在页面加载时计算它们,也可以在页面中可能具有的不同控件调用的事件中计算它们。

那么在你的。aspx页面你可以使用

& lt; % = c.ToString () %>

& lt; % = d.ToString () %>

可以添加到标签或文本框中:

Label1.Text = c;