If you create an asp button on the web form and put this in the event
handler:
Response.Redirect("KiesArtikels.asp?KlantID=" + ID + "&A0=0", true);
then in the other page you can access your request variables by doing:
if(Request["KlantID"] != null)
do whatever...