0

I'm getting a "Microsoft JScript runtime error: Object expected" on this line of code:

function ResetPanel()
    {__dopostback('pnlMaster', '');}

Any ideas on what I'm missing?

Thanks,

Jason

1 Answers1

3

The function's name is __doPostBack, not __dopostback. Your capitalization is wrong.

FishBasketGordo
  • 22,904
  • 4
  • 58
  • 91
  • I once took a class on case sensitivity, but apparently it did me no good. Thank you for your valuable post. –  Jun 21 '11 at 16:39