
I already have tried something like
"so = this.newPageID" or "so = this.PageId" or something similar
Please help.

Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhimanyu K VatsaPosted Aug 16, 2011, 4:40 AM
Response.Write(this.PageID);
Output: 0
well, i'm using session now, thanks
Abhimanyu K VatsaPosted Aug 16, 2011, 4:39 AM
finally i'm using session var n works okay
Om prakash SinghPosted Aug 16, 2011, 4:38 AM
In your senerio there is no need of PageID property as already you are getting the value by the statement this.newPageID.
But still, if you want to use PageID property then
try
first assign value to PageID property somewhere in the application and on page_load use
Response.Write(this.PageID);
To show the value
VulpesPosted Aug 15, 2011, 8:46 AM