RoniR
10-16-2006, 08:30 AM
i usually send variables from page to page by using something like that:
link.NavigateUrl = "lstmvt.aspx?id=" + e.Item.DataItem("n_cde").ToString & "&id2=" & e.Item.DataItem("y_cde") & "&to=" & ToRequest & "&from=" & FromRequest & "&type=" & cbtype.SelectedIndex
it it faster if i send the values in global variables? and why?
link.NavigateUrl = "lstmvt.aspx?id=" + e.Item.DataItem("n_cde").ToString & "&id2=" & e.Item.DataItem("y_cde") & "&to=" & ToRequest & "&from=" & FromRequest & "&type=" & cbtype.SelectedIndex
it it faster if i send the values in global variables? and why?