[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

CustomAttribute in Mobile controls

JL

12/14/2006 8:33:00 PM

I have a js file with the function SelectedIndexChanged

I have added the below code also in the aspx
<script language="javascript" src="/Scripts/Search.js"></script>

In the cs file I have added the customeAttribute as shown below
ddlSrch.CustomAttributes.Add("onchange", string.Format(
"SelectedIndexChanged('{0}','{1}','{2}');", ddlSrch.ClientID,
tbSrch.ClientID, tb1st.ClientID));

In the web.config I have enabled
<mobileControls allowCustomAttributes="true" />
But still the javascript method is not called.