Click here to Skip to main content
15,884,836 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to add anchor tag in uploded html page Pin
VyasRavi677619-Dec-12 18:54
VyasRavi677619-Dec-12 18:54 
AnswerRe: How to add anchor tag in uploded html page Pin
AmitGajjar20-Dec-12 5:39
professionalAmitGajjar20-Dec-12 5:39 
GeneralRe: How to add anchor tag in uploded html page Pin
chirag774920-Dec-12 21:34
chirag774920-Dec-12 21:34 
AnswerRe: How to add anchor tag in uploded html page Pin
CommDev20-Dec-12 20:04
CommDev20-Dec-12 20:04 
GeneralRe: How to add anchor tag in uploded html page Pin
chirag774920-Dec-12 20:14
chirag774920-Dec-12 20:14 
GeneralRe: How to add anchor tag in uploded html page Pin
n.podbielski22-Dec-12 21:57
n.podbielski22-Dec-12 21:57 
GeneralRe: How to add anchor tag in uploded html page Pin
n.podbielski22-Dec-12 21:57
n.podbielski22-Dec-12 21:57 
Questionjquery for asp.net sometimes work sometimes doesn't work Pin
Dhyanga19-Dec-12 11:57
Dhyanga19-Dec-12 11:57 
Hi,

I have jquery implemented for the popup confirmation on radio button select. So my radio button has yes or no options. so in each select, the popup should show up and based on the option, it has to hide and show the panel. But the problem is sometimes for the same option, jquery runs and sometimes for the same option jsquery doesn't run.

the following jquery is in my aspx page.
C#
<script language="JavaScript" type="text/javascript">

        $(document).ready(function() {



    function confirmDelete()
         {
             if (confirm('It will delete your file. Is that Ok?'))
            {
                document.getElementById('<%= radbutSelector.ClientID %>').click();
                return true;
            }
            return false;
        }

    </script>


Now i have called this jquery on radio button select like this
C#
<asp:radiobuttonlist id="radWantEnter" runat="server"
                RepeatDirection="Horizontal" RepeatLayout="Flow" CssClass="radio"
                   AutoPostBack="True" onclick="return confirmDelete();"
                   >
     <asp:Button Text="hiddenButton" ID="radbutSelector" runat="server" Style="display: none;"
       OnClick="radbutSelector_Click" />


And the code behind the radio button select is like this
C#
protected void radbutSelector_Click(object sender, EventArgs e)
      {


              if (radWantEnter.SelectedValue == "Yes")
              {
                  pnl1.Visible = true;

              }

              else
              {
                  pnl2.Visible = false;

              }

      }


sometimes the radbutSelector executes its codes and sometimes its not for the same event. Any idea and any solutions would be great help.
Dhyanga


modified 19-Dec-12 18:05pm.

AnswerRe: jquery for asp.net sometimes work sometimes doesn't work Pin
jkirkerx19-Dec-12 17:25
professionaljkirkerx19-Dec-12 17:25 
GeneralRe: jquery for asp.net sometimes work sometimes doesn't work Pin
Dhyanga19-Dec-12 17:50
Dhyanga19-Dec-12 17:50 
AnswerRe: jquery for asp.net sometimes work sometimes doesn't work Pin
jkirkerx19-Dec-12 18:09
professionaljkirkerx19-Dec-12 18:09 
QuestionOnly 1 use for admin? Pin
xnaLearner19-Dec-12 1:28
xnaLearner19-Dec-12 1:28 
QuestionHave userID in view, need userName posted Pin
xnaLearner19-Dec-12 0:41
xnaLearner19-Dec-12 0:41 
AnswerRe: Have userID in view, need userName posted Pin
Matt U.19-Dec-12 4:11
Matt U.19-Dec-12 4:11 
AnswerRe: Have userID in view, need userName posted Pin
CommDev20-Dec-12 22:55
CommDev20-Dec-12 22:55 
QuestionUnable to start program http://localhost:1837/default.aspx using VS 2008 in Windows XP IE 8 Pin
sr15919-Dec-12 0:08
sr15919-Dec-12 0:08 
QuestionHow to access 'name' given when user registers Pin
xnaLearner18-Dec-12 22:52
xnaLearner18-Dec-12 22:52 
AnswerRe: How to access 'name' given when user registers Pin
xnaLearner18-Dec-12 22:58
xnaLearner18-Dec-12 22:58 
Questionsequence contains no elements Pin
xnaLearner18-Dec-12 2:44
xnaLearner18-Dec-12 2:44 
AnswerRe: sequence contains no elements Pin
Matt U.18-Dec-12 7:23
Matt U.18-Dec-12 7:23 
GeneralRe: sequence contains no elements Pin
xnaLearner18-Dec-12 23:00
xnaLearner18-Dec-12 23:00 
GeneralRe: sequence contains no elements Pin
Matt U.19-Dec-12 1:47
Matt U.19-Dec-12 1:47 
Question[session] returns null Pin
xnaLearner17-Dec-12 23:20
xnaLearner17-Dec-12 23:20 
AnswerRe: [session] returns null Pin
Rahul Rajat Singh17-Dec-12 23:47
professionalRahul Rajat Singh17-Dec-12 23:47 
GeneralRe: [session] returns null Pin
xnaLearner18-Dec-12 0:10
xnaLearner18-Dec-12 0:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.