Set the form method type define to get and keep a hidden input with 4 value and name pageNo. Assuming you have done this at: http://localhost:4647/Project/MyList.aspx.
<html>
<body>
<form method="get">
<input name="pageNo" type="hidden" value="4"/>
<input type="submit" value="submit"/>
</form>
</body>
</html>
In other case, if we assume that we standing on a different page and moving from there to MyList.aspx then define action attribute of form. We call that page Default.aspx
<html>
<body>
<form method="get" action="MyList.aspx">
<input name="pageNo" type="hidden" value="4"/>
<input type="submit" value="submit"/>
</form>
</body>
</html>
Here, we just defined action attribute of the form.
And you should know when to use get and when to post