I am using this and I know it is not good:
protected string GetCompanyUrl (object companyNum, object balance)
{
return "./companyDetails.aspx?companyId=" + companyNum.ToString() + "&balance=" + balance.ToString();
}
But if I change the balance value in the url, the page will show the company info with wrong balance values.
So I tried to use Session["balance"]=balance.ToString();
but, as balance is from gridview and has many rows, it has many values, and it does not keep track of the values corresponding to the companyId.
Could anyone help please?
Passing the CompanyId in query string is acceptable approach, but Balance is kind of weird. The problem is Balance can be 123.45, and . (dot) might cause the problem.
Ideally, you just want to pass CompanyId in QueryString, and retrieve that balance of the company (from database) in next page.