大家好我有這樣的代碼在後面的代碼如何從拉碼值/串落後進入.aspx頁面中
//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」和「d 「放入我的.aspx頁面的一個錨點。我嘗試了很多事情,但我無法做到,這甚至有可能嗎?如果是的話如何?
謝謝
我也只是發現了另一種方式,我給錨提供了一個唯一的ID並在服務器端運行它,並且我能夠在那裏提供Href屬性。 – jorame
我希望你不是真的在生產代碼中使用名爲a,b,c和d的變量。 –