Im passing a query string from 1 page to many pages, the second page accepts the query string and pass it to the next page and so on. On the second page i accept the query string and it appear's on the url bar, that shows that the second page can recieve the query string. The problem is i want to send it to business class like this
CD = new BusinessLayer.ContactDetails(Convert.ToInt32(Request.QueryString["txtAlumnus.Text"], "CD12354", txtCell.Text, txtTellHome.Text, txtTellWork.Text, txtEmail.Text, txtPAddress.Text, txtPCode.Text, txtRCode.Text, txtRAddress.Text);
and the business class seems like it cant recieve it at all.
Another problem i have is, as i accept on the second page and send it on the third page, now the third page on the url bar shows 0, meaning it cant recieve any value.
Need some advice, your response will be appreciated