Okay Gopal!
Maybe the problem is my framework.
I'm using 2.2.
Probably is it.
Is there any asp.net 2.0 newsgroup? Do you know anyone?
But, if it helps, see my html code below:
<table class="nb bkg2" width="100%">
<tr>
<td nowrap="nowrap" colspan="4">
<asp:Button id="NewAddress" runat="server" width="150px"
onclick="NewAddress_Click" skinid="new"></asp:Button>
<asp:Button id="EditAddress" runat="server" width="150px"
onclick="EditAddress_Click" enabled="False"></asp:Button>
<asp:Button id="DeleteAddress" runat="server" width="150px" enabled="False"
onclick="DeleteAddress_Click" skinid="del"></asp:Button>
<asp:Button id="SetPrimaryAddress" runat="server" width="150px"
enabled="False" onclick="SetPrimaryAddress_Click"></asp:Button>
</td>
</tr>
<tr>
<td nowrap="nowrap" colspan="4">
<asp:GridView id="GridAddresses" runat="server" width="100%"
autogeneratecolumns="False" pagesize="1" datakeynames="AddressID"
onselectedindexchanged="GridAddresses_SelectedIndexChanged"></asp:GridView>
<ucg

agingControl id="PC1" runat="server" visible="false"
onpagingcontrolnavigation="PC1_PagingControlNavigation" />
</td>
</tr>
<tr>
<td nowrap="nowrap" colspan="4">
<table class="nb bkg2" width="100%">
<tr>
<td nowrap="nowrap"><asp:label id="lbl_Country" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap"><UCPU:combocountries id="Country" runat="server"
autopostback="true" width="200"
oncombocountryindexchanged="Country_SelectedIndexChanged"
combocountriesvalidation="true"
combocountriesvalidationgroup="AddressManager" /></td>
<td nowrap="nowrap"><asp:label id="lbl_PostalCode" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap">
<UCG:maskededitcontrol id="PostalCode" runat="server" datatype="Alfanumeric"
width="185" mask="#####-###" controlname="PostalCode"/>
<asp:button id="ValidateZipCode" runat="server" width="18px" height="18px"
/>
</td>
</tr>
<tr>
<td nowrap="nowrap"><asp:label id="lbl_State" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap"><UCPU:combostates id="State" runat="server"
autopostback="true" width="200"
oncombostateindexchanged="State_SelectedIndexChanged"
combostatesvalidation="true" combostatesvalidationgroup="AddressManager"
/></td>
<td nowrap="nowrap"><asp:label id="lbl_Perimeter" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap"><UCPU:comboperimeters id="Perimeter" runat="server"
autopostback="true" width="213" comboperimetersvalidation="false" /></td>
</tr>
<tr>
<td nowrap="nowrap"><asp:label id="lbl_City" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap">
<CCS

ickListCall id="PickListCall1" runat="server" picklistcallwidth="185"
onpicklistcallbuttonclick="PickListCallClick"
picklistcallpage="PickListCityPage" picklistdestinyview="CityPickList" />
<asp:RequiredFieldValidator id="rfvFirstName"
ControlToValidate="AddressName" Display="Dynamic"
ErrorMessage="First Name Is Required" Runat="server" CssClass="AlertText"
EnableClientScript="True"
validationgroup="AddressManager"><img src="../../Images/img_miss.gif"
/></asp:RequiredFieldValidator>
</td>
<td nowrap="nowrap"><asp:label id="lbl_TimeZone" runat="server"
skinid="bold"></asp:label></td>
<td nowrap="nowrap">
<UCPU:combotimezones id="SimplectTimeZone" runat="server"
autopostback="false"
width="213" combotimezonesautopostback="false"
combotimezonevalidation="true"
combotimezonevalidationgroup="AddressManager" />
</td>
</tr>
</table>
<...>
Thanks.
Fernando