Question : asp.net Need to know to reset a form. once it has been submited. My form is retaining it values.

Need to know to reset a form. once it has been submited. My form is retaining it values.
It is like the browser is retaining the values.

I have a JS function. that only works and reset the values...only before submitting them.

thier must be someway to clear the form.
I don't wont the user to have to manually clear each entry
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
function btnReset_Click() {
    document.getElementById("ddlType").selectedIndex = -1;
    document.getElementById("ddlMake").selectedIndex = -1;
    document.getElementById("ddlYearMin").selectedIndex = -1;
    document.getElementById("ddlYearMax").selectedIndex = -1;
    document.getElementById("ddlHPmin").selectedIndex = -1;
    document.getElementById("ddlHPmax").selectedIndex = -1;
    document.getElementById("ddlState").selectedIndex = -1;
    document.txtPriceMin = "";
    document.txtPriceMax = "";
    document.txtZip = "";
}

Answer : asp.net Need to know to reset a form. once it has been submited. My form is retaining it values.

Can you not do the Import manually ?  Also include importing any relationships?

Also ... you cannot create an EXE from an MDB file ...

mx
Random Solutions  
 
programming4us programming4us