second parameter of querystring get lost when try to share page lin...

Hi, consider we send 2 parameter (ID and code) from f.aspx to f2.aspx using code below <a href="f2.aspx?ID=5&code=11">More</a> I've this code in f2.aspx.cs protected void...

string CurrentURL = Request.Url.AbsoluteUri; string part1 = "http://www.facebook. com/sharer.php?u="; string part2 = CurrentURL.Substring(7);

Lee mas