[C#] Http Missing Page Source [WebClient]

12/02/2014 22:25 ​Exo#1
I've been working on a took that checks some stuff using page's sc, it was working fine, but suddenly it stopped working, after some tests I saw that I don't receive the whole page source so the conditions aren't fulfilled.
Example, I was checking if x user thanked x post in this way
PHP Code:
WebRequest Request WebRequest.Create("http://www.elitepvpers.com/forum/private-sro-advertising/2673394-collection-find-your-server.html#post23396497");
            
Stream requeststream Request.GetResponse().GetResponseStream();
            
StreamReader read = new StreamReader(requeststream);
            
string src read.ReadToEnd();
            
string[] KRALL StringBetween("<div id=\"post_thanks_container_23396497\" class=\"post-thanks-container post-thanks-no-overflow\">""</div>"srcfalsefalse); 
@Browser it shows the whole code and I should receive this string
But instead I get an empty string, which probably means that the actual sc downloaded by the webclient isn't the whole code.
12/02/2014 23:18 MrSm!th#2
We restricted the list of a post's thanks to registered members only. Guests cannot see them.
12/03/2014 00:16 ​Exo#3
That explains it all, okay this is no longer needed and can be closed!
12/03/2014 00:18 snow#4
#closed