Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 95255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:37:46+00:00 2026-05-10T23:37:46+00:00

intro: I am pretty sure this is my fault. But I just don’t see

  • 0

intro: I am pretty sure this is my fault. But I just don’t see it and before tearing my hair out, I thought I should ask here 😉

I have a button which looks like this in my ASPX:

<input onClick='ELB_ClearSelection('DropDownList___00178');' type='Button' value='Clear' /> 

The HTML that is generated says:

<input onClick='ELB_ClearSelection('DropDownList___00178');' type='Button' value='Clear' /> 

…which obviously does not work 🙁

I ran the thing through HTML Validator and apart from the ‘usual’ complaints (related to it not fully ‘understanding’ ASPX) I did not see anything special, I have progrrammatically checked for balanced quotes and did not see anything suspicious, so I have no ideas where to look further 🙁

In case it helps, here is the full ASPX:

<%@ Register tagPrefix='des' assembly='PeterBlum.DES' namespace='PeterBlum.DES' %> <%@ Register tagPrefix='despval' assembly='PeterBlum.DES.NativeToDES' namespace='PeterBlum.DES.NativeToDES' %> <%@Page Language='apl' Debug='true' Inherits='COPA' src='COPA_MS.dws' %> <%@ Register TagPrefix='mbcbb' Namespace='MetaBuilders.WebControls' Assembly='MetaBuilders.WebControls.ComboBox' %> <%@ Register TagPrefix='ELB' Namespace='ELB' Assembly='EasyListBox' %> <html><head>     <meta name='date'      content='2009-01-03T10:55:39' />     <meta name='generator' content='COPA_MS.DWS' defs='(11)(13)(14)' />     <meta name='publisher' content='Dynamic Logistics Systems GmbH' />     <meta http-equiv='content-type' content='text/html; charset=ISO-8859-1' />     <title>       COPA_MS  - Dispogruppen       </title>   <link rel='stylesheet' type='text/css' href='./copa.css' />   <script language='javascript' type='text/javascript' src='custom-form-elements.js'></script>     </head><body>     <h1>       <span class='copa'>COPA-</span><span class='ms'>MS:</span> Dispogruppen       </h1>     <form runat=server><des:PageSecurityValidator id='PageSecurityValidator1' runat='server' >         </des:PageSecurityValidator>        <input runat='server' type='hidden' NAME='SelMaskeId' value='11' ID=SelMaskeID>         <input runat='server' type='hidden' NAME='TreffId' value='13' ID=TreffID>           <table>             <tr>               <td valign='top'><asp:Label runat='server' ID='Label__________00176' Text='Code Dispogruppe' /> </td><td><elb:EasyListBox runat='server' ID='ComboBox_______00176'  Text='' MaxLength='6' Width='100'   SelectQuery='***' ConnectionStringSqlServer='xxx'  DataValueField='code' DataTextField='code' DisplayMode='Combo' LimitToList='false' ></elb:EasyListBox></td>               </tr><tr>               <td valign='top'><asp:Label runat='server' ID='Label__________00177' Text='Bezeichnung' /> </td><td><elb:EasyListBox runat='server' ID='ComboBox_______00177'  Text='' MaxLength='50' Width='210'  SelectQuery='***' ConnectionStringSqlServer='xxx'  DataValueField='bez' DataTextField='bez' DisplayMode='Combo' LimitToList='false' ></elb:EasyListBox></td>               </tr><tr>               <td valign='top'><asp:Label runat='server' ID='Label__________00178' Text='Lieferant' /> </td><td><elb:EasyListBox runat='server' ID='DropDownList___00178'  Text='' MaxLength='0' Width='210' SelectQuery='***' ConnectionStringSqlServer='xxx'  DataValueField='id' DataTextField='bez'></elb:EasyListBox>                  <input type='Button' value='Auswahl entfernen' onClick='ELB_ClearSelection('DropDownList___00178');' />                </td>               </tr><tr>               <td valign='top'><asp:Label runat='server' ID='Label__________00182' Text='Dispo-Verfahren' /> </td><td><elb:EasyListBox runat='server' ID='DropDownList___00182'  Text='' MaxLength='0' Width='280       ' Tref_Width='280' Tref_MaxLength='200' s_left='' s_top='' s_position='' css_sl='' css_tl='' css_dt=''  SelectQuery='***' ConnectionStringSqlServer='xxx'  DataValueField='id' DataTextField='bez'></elb:EasyListBox>                   <input type='Button' value='Auswahl entfernen' onClick='ELB_ClearSelection('DropDownList___00182');' /></td>               </tr>             </table><br /><br />           <asp:Button runat='server' ID='Button_Suchen'  Text='Suchen'  onClick='CatchAll_onClick' />            </form>         </body>       </html> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T23:37:47+00:00Added an answer on May 10, 2026 at 11:37 pm

    Change this:

    onClick='ELB_ClearSelection('DropDownList___00178')' 

    To this:

    onClick='ELB_ClearSelection('DropDownList___00178')' 

    In your ASPX.

    I’ll avoid commenting on having select queries and login information for your DB in your markup!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 74k
  • Answers 74k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer for(language in google.language.Languages) { alert(google.language.Languages[language]); } ? May 11, 2026 at 2:25 pm
  • added an answer Subversion doesn't work that way. You haven't actually overwritten it.… May 11, 2026 at 2:25 pm
  • added an answer There is no widely accepted industry standard. By putting (short)… May 11, 2026 at 2:25 pm

Related Questions

intro: I am pretty sure this is my fault. But I just don't see
I recently started looking into the new Policy Management in SQL Server 2008 and
EDIT: I suppose I should clarify, in case it matters. I am on a
I'm creating (really, re-creating) an app that has existing user and other data in
I have two issues both related to (I believe) my SQL Server setup. I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.