hi ASP people,
I have a workaround for this problem.. but I would rather do it the right way.
The page displays a droplist of phone extensions.
The problem is that 2 subs (Selectdata(ext) and DisplayTable) are being called as the page initially loads for the first time.
**************************
What I want is to only call these subs when the user selects an extension number from the listbox....this way,
the listbox would be the only thing appearing on the page until the user made a selection from it.
***************************
This is what I'm doing: The form name is Ext - when an extenson is selected, it submits the form (I guess ?)
<SELECT NAME="EXT" size="1" onChange="Ext.submit()">
<option>Select an Extension #</option>
I know this should be easy... I'm still learning
Thanks, John
I have a workaround for this problem.. but I would rather do it the right way.
The page displays a droplist of phone extensions.
The problem is that 2 subs (Selectdata(ext) and DisplayTable) are being called as the page initially loads for the first time.
**************************
What I want is to only call these subs when the user selects an extension number from the listbox....this way,
the listbox would be the only thing appearing on the page until the user made a selection from it.
***************************
This is what I'm doing: The form name is Ext - when an extenson is selected, it submits the form (I guess ?)
<SELECT NAME="EXT" size="1" onChange="Ext.submit()">
<option>Select an Extension #</option>
I know this should be easy... I'm still learning
Thanks, John