I dont usually like to give advice on hacks ;) because if it was me and i was sure im not going to need it then id delete it..
But you can just
1. delete the <legend>price</legend>
2. Hide the PriceTextBox (Visible=false) (You can change its text value to 0 instead of Bind("Price") )
3.Delete or disable (Enabled=false) the validator PriceValidator that comes after it in the .aspx file
If you delete the textbox completey (I recommend that) you'll need to :
1. Go to PostAdWizard_FinishButtonClick and change Decimal price = Decimal.Parse(PriceTextBox.Text); to Decimal price = 0.0;
2. Delete the PriceValidator
3. Delete the method PriceValidator_ServerValidate
-Ash
Web: www.love2trade.com Blog: blog.love2trade.comPlease remember to click "Mark as Answer" on this post if it helped you.