Open modal dialogue in catch block










-1















I have this code in my action



var singedUser = HttpContext.User.Identity.Name;

try

_purchaseService.PurchaseCard(singedUser, cardName);

catch





And I want this to open ONLY if the code enters the catch block



<div id="Modal" class="modal fade" role="dialog">
<div class="modal-dialog">

<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Purchasing Card</h4>
</div>
<div class="modal-body">
<p>You have unsufficient funds!</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div>

</div>
</div>


And here is my button



<a class="button btn btn-success" 
asp-controller="Store" asp-action="Buy"
asp-route-data ="@card.Name">Buy (@card.Price coins)</a>


I would appreciate if someone would tell me how I can open this dialogue box in the same page only if the code enters the catch block










share|improve this question




























    -1















    I have this code in my action



    var singedUser = HttpContext.User.Identity.Name;

    try

    _purchaseService.PurchaseCard(singedUser, cardName);

    catch





    And I want this to open ONLY if the code enters the catch block



    <div id="Modal" class="modal fade" role="dialog">
    <div class="modal-dialog">

    <div class="modal-content">
    <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal">&times;</button>
    <h4 class="modal-title">Purchasing Card</h4>
    </div>
    <div class="modal-body">
    <p>You have unsufficient funds!</p>
    </div>
    <div class="modal-footer">
    <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
    </div>
    </div>

    </div>
    </div>


    And here is my button



    <a class="button btn btn-success" 
    asp-controller="Store" asp-action="Buy"
    asp-route-data ="@card.Name">Buy (@card.Price coins)</a>


    I would appreciate if someone would tell me how I can open this dialogue box in the same page only if the code enters the catch block










    share|improve this question


























      -1












      -1








      -1








      I have this code in my action



      var singedUser = HttpContext.User.Identity.Name;

      try

      _purchaseService.PurchaseCard(singedUser, cardName);

      catch





      And I want this to open ONLY if the code enters the catch block



      <div id="Modal" class="modal fade" role="dialog">
      <div class="modal-dialog">

      <div class="modal-content">
      <div class="modal-header">
      <button type="button" class="close" data-dismiss="modal">&times;</button>
      <h4 class="modal-title">Purchasing Card</h4>
      </div>
      <div class="modal-body">
      <p>You have unsufficient funds!</p>
      </div>
      <div class="modal-footer">
      <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
      </div>
      </div>

      </div>
      </div>


      And here is my button



      <a class="button btn btn-success" 
      asp-controller="Store" asp-action="Buy"
      asp-route-data ="@card.Name">Buy (@card.Price coins)</a>


      I would appreciate if someone would tell me how I can open this dialogue box in the same page only if the code enters the catch block










      share|improve this question
















      I have this code in my action



      var singedUser = HttpContext.User.Identity.Name;

      try

      _purchaseService.PurchaseCard(singedUser, cardName);

      catch





      And I want this to open ONLY if the code enters the catch block



      <div id="Modal" class="modal fade" role="dialog">
      <div class="modal-dialog">

      <div class="modal-content">
      <div class="modal-header">
      <button type="button" class="close" data-dismiss="modal">&times;</button>
      <h4 class="modal-title">Purchasing Card</h4>
      </div>
      <div class="modal-body">
      <p>You have unsufficient funds!</p>
      </div>
      <div class="modal-footer">
      <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
      </div>
      </div>

      </div>
      </div>


      And here is my button



      <a class="button btn btn-success" 
      asp-controller="Store" asp-action="Buy"
      asp-route-data ="@card.Name">Buy (@card.Price coins)</a>


      I would appreciate if someone would tell me how I can open this dialogue box in the same page only if the code enters the catch block







      c# asp.net-core modal-dialog






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 '18 at 19:09









      Camilo Terevinto

      18k63465




      18k63465










      asked Nov 11 '18 at 19:07









      EdwardchoEdwardcho

      13




      13






















          2 Answers
          2






          active

          oldest

          votes


















          1














          You can also use an ajax call to return the partial view and add it to the DOM. Setting up a modal to load a partial view is actually pretty straight forward :




          1. Create partial view : _ModalContent.cshtml






            <div class="modal-content">
            <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal">&times;</button>
            <h4 class="modal-title">Purchasing Card</h4>
            </div>
            <div class="modal-body">
            <p>You have unsufficient funds!</p>
            </div>
            <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
            </div>
            </div>





          2. Modify your Index page :



            <a id="button1" class="button btn btn-success" 
            asp-controller="Store" asp-action="Buy"
            asp-route-data ="@card.Name">Buy (@card.Price coins)</a>

            <div id="myModal"></div>

            @section Scripts

            <script type="text/javascript">
            $(function ()
            $.ajaxSetup( cache: false );
            $("#button1").on("click", function (e)
            $('#myModal').load(this.href, function ()
            $('#Modal').modal(
            keyboard: true
            , 'show');
            );
            return false;
            );
            );
            </script>




          3. Controller function :



            public IActionResult buy(string data)

            .....


            return PartialView("_ModalContent");








          share|improve this answer























          • Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

            – Edwardcho
            Nov 14 '18 at 16:25











          • @Edwardcho , if the reply helps , you can mark that as answer .

            – Nan Yu
            Nov 19 '18 at 3:15











          • I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

            – Edwardcho
            Nov 19 '18 at 17:33











          • @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

            – Nan Yu
            Nov 20 '18 at 1:28


















          0














          I would pass a variable through the ViewBag on the controller/action. Something like this in the controller:



           var singedUser = HttpContext.User.Identity.Name;

          try

          _purchaseService.PurchaseCard(singedUser, cardName);

          catch

          ViewBag.ShowModal = false;



          Then toggle whether or not to trigger JQuery to show the Modal in the scripts section of the view:



          @section Scripts
          <script>
          @if(ViewBag.ShowModal == true)
          @Html.Raw("$('#Modal').modal('show');");

          </script>






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53252198%2fopen-modal-dialogue-in-catch-block%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You can also use an ajax call to return the partial view and add it to the DOM. Setting up a modal to load a partial view is actually pretty straight forward :




            1. Create partial view : _ModalContent.cshtml






              <div class="modal-content">
              <div class="modal-header">
              <button type="button" class="close" data-dismiss="modal">&times;</button>
              <h4 class="modal-title">Purchasing Card</h4>
              </div>
              <div class="modal-body">
              <p>You have unsufficient funds!</p>
              </div>
              <div class="modal-footer">
              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
              </div>
              </div>





            2. Modify your Index page :



              <a id="button1" class="button btn btn-success" 
              asp-controller="Store" asp-action="Buy"
              asp-route-data ="@card.Name">Buy (@card.Price coins)</a>

              <div id="myModal"></div>

              @section Scripts

              <script type="text/javascript">
              $(function ()
              $.ajaxSetup( cache: false );
              $("#button1").on("click", function (e)
              $('#myModal').load(this.href, function ()
              $('#Modal').modal(
              keyboard: true
              , 'show');
              );
              return false;
              );
              );
              </script>




            3. Controller function :



              public IActionResult buy(string data)

              .....


              return PartialView("_ModalContent");








            share|improve this answer























            • Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

              – Edwardcho
              Nov 14 '18 at 16:25











            • @Edwardcho , if the reply helps , you can mark that as answer .

              – Nan Yu
              Nov 19 '18 at 3:15











            • I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

              – Edwardcho
              Nov 19 '18 at 17:33











            • @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

              – Nan Yu
              Nov 20 '18 at 1:28















            1














            You can also use an ajax call to return the partial view and add it to the DOM. Setting up a modal to load a partial view is actually pretty straight forward :




            1. Create partial view : _ModalContent.cshtml






              <div class="modal-content">
              <div class="modal-header">
              <button type="button" class="close" data-dismiss="modal">&times;</button>
              <h4 class="modal-title">Purchasing Card</h4>
              </div>
              <div class="modal-body">
              <p>You have unsufficient funds!</p>
              </div>
              <div class="modal-footer">
              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
              </div>
              </div>





            2. Modify your Index page :



              <a id="button1" class="button btn btn-success" 
              asp-controller="Store" asp-action="Buy"
              asp-route-data ="@card.Name">Buy (@card.Price coins)</a>

              <div id="myModal"></div>

              @section Scripts

              <script type="text/javascript">
              $(function ()
              $.ajaxSetup( cache: false );
              $("#button1").on("click", function (e)
              $('#myModal').load(this.href, function ()
              $('#Modal').modal(
              keyboard: true
              , 'show');
              );
              return false;
              );
              );
              </script>




            3. Controller function :



              public IActionResult buy(string data)

              .....


              return PartialView("_ModalContent");








            share|improve this answer























            • Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

              – Edwardcho
              Nov 14 '18 at 16:25











            • @Edwardcho , if the reply helps , you can mark that as answer .

              – Nan Yu
              Nov 19 '18 at 3:15











            • I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

              – Edwardcho
              Nov 19 '18 at 17:33











            • @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

              – Nan Yu
              Nov 20 '18 at 1:28













            1












            1








            1







            You can also use an ajax call to return the partial view and add it to the DOM. Setting up a modal to load a partial view is actually pretty straight forward :




            1. Create partial view : _ModalContent.cshtml






              <div class="modal-content">
              <div class="modal-header">
              <button type="button" class="close" data-dismiss="modal">&times;</button>
              <h4 class="modal-title">Purchasing Card</h4>
              </div>
              <div class="modal-body">
              <p>You have unsufficient funds!</p>
              </div>
              <div class="modal-footer">
              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
              </div>
              </div>





            2. Modify your Index page :



              <a id="button1" class="button btn btn-success" 
              asp-controller="Store" asp-action="Buy"
              asp-route-data ="@card.Name">Buy (@card.Price coins)</a>

              <div id="myModal"></div>

              @section Scripts

              <script type="text/javascript">
              $(function ()
              $.ajaxSetup( cache: false );
              $("#button1").on("click", function (e)
              $('#myModal').load(this.href, function ()
              $('#Modal').modal(
              keyboard: true
              , 'show');
              );
              return false;
              );
              );
              </script>




            3. Controller function :



              public IActionResult buy(string data)

              .....


              return PartialView("_ModalContent");








            share|improve this answer













            You can also use an ajax call to return the partial view and add it to the DOM. Setting up a modal to load a partial view is actually pretty straight forward :




            1. Create partial view : _ModalContent.cshtml






              <div class="modal-content">
              <div class="modal-header">
              <button type="button" class="close" data-dismiss="modal">&times;</button>
              <h4 class="modal-title">Purchasing Card</h4>
              </div>
              <div class="modal-body">
              <p>You have unsufficient funds!</p>
              </div>
              <div class="modal-footer">
              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
              </div>
              </div>





            2. Modify your Index page :



              <a id="button1" class="button btn btn-success" 
              asp-controller="Store" asp-action="Buy"
              asp-route-data ="@card.Name">Buy (@card.Price coins)</a>

              <div id="myModal"></div>

              @section Scripts

              <script type="text/javascript">
              $(function ()
              $.ajaxSetup( cache: false );
              $("#button1").on("click", function (e)
              $('#myModal').load(this.href, function ()
              $('#Modal').modal(
              keyboard: true
              , 'show');
              );
              return false;
              );
              );
              </script>




            3. Controller function :



              public IActionResult buy(string data)

              .....


              return PartialView("_ModalContent");









            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 13 '18 at 6:07









            Nan YuNan Yu

            6,3952753




            6,3952753












            • Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

              – Edwardcho
              Nov 14 '18 at 16:25











            • @Edwardcho , if the reply helps , you can mark that as answer .

              – Nan Yu
              Nov 19 '18 at 3:15











            • I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

              – Edwardcho
              Nov 19 '18 at 17:33











            • @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

              – Nan Yu
              Nov 20 '18 at 1:28

















            • Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

              – Edwardcho
              Nov 14 '18 at 16:25











            • @Edwardcho , if the reply helps , you can mark that as answer .

              – Nan Yu
              Nov 19 '18 at 3:15











            • I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

              – Edwardcho
              Nov 19 '18 at 17:33











            • @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

              – Nan Yu
              Nov 20 '18 at 1:28
















            Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

            – Edwardcho
            Nov 14 '18 at 16:25





            Thanks! I will look up that one, because I couldn't get a hold of the Viewbag one :)

            – Edwardcho
            Nov 14 '18 at 16:25













            @Edwardcho , if the reply helps , you can mark that as answer .

            – Nan Yu
            Nov 19 '18 at 3:15





            @Edwardcho , if the reply helps , you can mark that as answer .

            – Nan Yu
            Nov 19 '18 at 3:15













            I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

            – Edwardcho
            Nov 19 '18 at 17:33





            I am sorry, but I think I need a few adjustments to do here and there, since it opens a blank new page with the modal content :/ and I want the modal to display itself in the same page if the purchase is declined

            – Edwardcho
            Nov 19 '18 at 17:33













            @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

            – Nan Yu
            Nov 20 '18 at 1:28





            @Edwardcho , No ,it wouldn't open a new page . Try the codes in a new page ,

            – Nan Yu
            Nov 20 '18 at 1:28













            0














            I would pass a variable through the ViewBag on the controller/action. Something like this in the controller:



             var singedUser = HttpContext.User.Identity.Name;

            try

            _purchaseService.PurchaseCard(singedUser, cardName);

            catch

            ViewBag.ShowModal = false;



            Then toggle whether or not to trigger JQuery to show the Modal in the scripts section of the view:



            @section Scripts
            <script>
            @if(ViewBag.ShowModal == true)
            @Html.Raw("$('#Modal').modal('show');");

            </script>






            share|improve this answer



























              0














              I would pass a variable through the ViewBag on the controller/action. Something like this in the controller:



               var singedUser = HttpContext.User.Identity.Name;

              try

              _purchaseService.PurchaseCard(singedUser, cardName);

              catch

              ViewBag.ShowModal = false;



              Then toggle whether or not to trigger JQuery to show the Modal in the scripts section of the view:



              @section Scripts
              <script>
              @if(ViewBag.ShowModal == true)
              @Html.Raw("$('#Modal').modal('show');");

              </script>






              share|improve this answer

























                0












                0








                0







                I would pass a variable through the ViewBag on the controller/action. Something like this in the controller:



                 var singedUser = HttpContext.User.Identity.Name;

                try

                _purchaseService.PurchaseCard(singedUser, cardName);

                catch

                ViewBag.ShowModal = false;



                Then toggle whether or not to trigger JQuery to show the Modal in the scripts section of the view:



                @section Scripts
                <script>
                @if(ViewBag.ShowModal == true)
                @Html.Raw("$('#Modal').modal('show');");

                </script>






                share|improve this answer













                I would pass a variable through the ViewBag on the controller/action. Something like this in the controller:



                 var singedUser = HttpContext.User.Identity.Name;

                try

                _purchaseService.PurchaseCard(singedUser, cardName);

                catch

                ViewBag.ShowModal = false;



                Then toggle whether or not to trigger JQuery to show the Modal in the scripts section of the view:



                @section Scripts
                <script>
                @if(ViewBag.ShowModal == true)
                @Html.Raw("$('#Modal').modal('show');");

                </script>







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 11 '18 at 19:55









                Nathan ChampionNathan Champion

                544111




                544111



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53252198%2fopen-modal-dialogue-in-catch-block%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3