but in server B is normal
why?
thank you
"kwongtk" <kwo...@discussions.microsoft.com> wrote in message
news:20B9171F-93BC-41FB...@microsoft.com...
if i change
this.ID = "batchEndorseworklist";
to
this.ID = "batchEndorseworklist1";
everything will be ok. but i can't call the javascript
var CheckArray = parent.Worklist.batchEndorseworklist.checkbox
if(CheckArray != null)
// for example
var CheckArray = parent.Worklist.batchEndorseworklist.checkbox
var CheckArray1 = parent.Worklist.batchEndorseworklist1.checkbox
if(CheckArray != null || CheckArray1 != null)
Ordinarily the compiler does not allow multiple instances of controls of the
same type with the same ID. I have learned this "rule" does not apply when
using Master Pages and the Wizard control and that's about all I can help
with other than to suggest what I said about modifying the JavaScript
"kwongtk" <kwo...@discussions.microsoft.com> wrote in message
news:D0C928D3-7C48-4F92...@microsoft.com...