Help | Site Map
Connecting Tech Pros Worldwide
Reply
 
LinkBack Thread Tools
  #1  
Old September 11th, 2008, 04:58 AM
Newbie
 
Join Date: Sep 2008
Posts: 1
Default how to create selection list with event onselectedindexchange dynamically

hello friends i am trying to find solution for this problem if u know something then please tell

i am creating web application that runs on black berry.

here i need to create selection list which has three radio buttons in it.

but these are created dynamically. and i want to add event "onselectedindexchanged" for this list.

so how can i add this event when i am creating it dynamically.

for static creation the code is of this kind
---------------------------------------------------------------
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestSelectionEvent.aspx.cs" Inherits="TestSelectionEvent" %>
<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

<html >
<head>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"/>
<meta name="CODE_LANGUAGE" content="C#"/>
</head>
<script runat="server">

void mycall(Object sender, EventArgs e)
{
Response.Write("aaaa");
}

</script>
<body>
<mobile:Form id="Form1" runat="server">
<mobile:Panel ID="p1" Runat="server">
<mobile:DeviceSpecific ID="DeviceSpecific1" Runat="server">
<Choice Filter="supportsJavaScript">
<ContentTemplate>
<asp:RadioButtonList ID="SelectionList1" runat="server" OnSelectedIndexChanged="SelectionList1_SelectedInd exChanged" AutoPostBack="true" >
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:RadioButtonList>

</ContentTemplate>
</Choice>
<Choice Filter="supportsJavaScript">
<ContentTemplate>
<mobile:SelectionList ID="SelectionList1" Runat="server" OnSelectedIndexChanged="SelectionList1_SelectedInd exChanged">
<Item Text="Yes" Value="Yes" />
<Item Text="No" Value="No" />
</mobile:SelectionList>

</ContentTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:Panel>
</mobile:Form>

</body>
</html>
-------------------------------------------------------------------------------------------------------
here selection list is created in design view i.e. statically.

but how can i do same when selection list is created dynamically

if any one know please help me........
thank you.
Reply
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles