Community & Support
Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Treeview > Checkbox in FF
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Checkbox in FF

Feed from this thread
  • Ehud Bino avatar

    Posted on Dec 22, 2009 (permalink)

    i will make myself clear (sorry for my english)hope it will help to solve my problem

    In my search engine i have the option to search some subjects from checkbox...it is like i have 10 checkboxes with an

    option to choose some of the 10 checkboxes and then to press search and i need to see some results....

    now in IE after I press the search button i can see the results...

    in FF after i press the search button the page load and it clear all checkboxes i choose, and i need to choose it again....


    hope i make my self clear sorry for my poor English

    this is the code

                            <table align="center"cellpadding="5px"; &nbsp;&nbsp;> 
                            <%  
                                do while secondrs.eof=false%> 
                                <tr> 
                                    <td> 
                                    <input name="add<%=secondrs("SubjectID")%>" id="add<%=secondrs("SubjectID")%>" type="checkbox"   
                                    <%'checked the selected terms  
                                    if InStr(1,checkedterms, secondrs("SubjectID"))<>0 then  %> 
                                     checked=true   
                                     <%end if%> 
                                     value="<%=secondrs("SubjectID")%>"/>  
                                    <%=secondrs("SubjectName")%>                                </td> 
                                </tr> 
                            <%  
                                    secondrs.MoveNext  
                                loop  
                            %></table

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Treeview > Checkbox in FF