Click here to Skip to main content
15,922,584 members

Comments by neocodes (Top 4 by date)

neocodes 28-Dec-11 1:53am View    
But it is in ajax. i dont want it using ajax. is there any solution without using it
neocodes 21-Dec-11 5:21am View    
I couldn't get that . please share the code. i want to store Y/N in the database
neocodes 21-Dec-11 4:27am View    
Deleted
Here i am fetching the values from the web.config file
It is storing Yes/No but i want to store Y/N instead of Yes/No into the Database.
would you please tell me how to do that?

web.config
<add key ="abc" value ="Yes No"/>


home.aspx
<asp:RadioButtonList ID="rblCDDH" runat="server" Font-Bold="True" ForeColor="Black">


home.aspx.cs
rblCDDH.DataSource = ConfigurationManager.AppSettings["abc"].Split(' ');
rblCDDH.DataBind();
neocodes 21-Dec-11 4:27am View    
Deleted
Here i am fetching the values from the web.config file
It is storing Yes/No but i want to store Y/N instead of Yes/No into the Database.
would you please tell me how to do that?

web.config
<add key ="abc" value ="Yes No"/>


home.aspx
<asp:RadioButtonList ID="rblCDDH" runat="server" Font-Bold="True" ForeColor="Black">


home.aspx.cs
rblCDDH.DataSource = ConfigurationManager.AppSettings["abc"].Split(' ');
rblCDDH.DataBind();