ASP.NET Razor MVC Core WebApplication - problem with Sessions











up vote
-2
down vote

favorite












following to this link



When im trying to build app maked like this, i have problem in HomeController.cs :




Error CS1061: 'ISession' does not contain a definition for 'SetString'
and no extension method 'SetString' accepting a first argument of type
'ISession' could be found (are you missing a using directive or an
assembly reference?) (CS1061) (sessionTest)



Error CS1061: 'ISession' does not contain a definition for 'GetString'
and no extension method 'GetString' accepting a first argument of type
'ISession' could be found (are you missing a using directive or an
assembly reference?) (CS1061) (sessionTest)




It looks like i can't set session values as string, int etc. I can only do it with Set and it suggest me to use




String and byte




Can you help me?










share|improve this question


























    up vote
    -2
    down vote

    favorite












    following to this link



    When im trying to build app maked like this, i have problem in HomeController.cs :




    Error CS1061: 'ISession' does not contain a definition for 'SetString'
    and no extension method 'SetString' accepting a first argument of type
    'ISession' could be found (are you missing a using directive or an
    assembly reference?) (CS1061) (sessionTest)



    Error CS1061: 'ISession' does not contain a definition for 'GetString'
    and no extension method 'GetString' accepting a first argument of type
    'ISession' could be found (are you missing a using directive or an
    assembly reference?) (CS1061) (sessionTest)




    It looks like i can't set session values as string, int etc. I can only do it with Set and it suggest me to use




    String and byte




    Can you help me?










    share|improve this question
























      up vote
      -2
      down vote

      favorite









      up vote
      -2
      down vote

      favorite











      following to this link



      When im trying to build app maked like this, i have problem in HomeController.cs :




      Error CS1061: 'ISession' does not contain a definition for 'SetString'
      and no extension method 'SetString' accepting a first argument of type
      'ISession' could be found (are you missing a using directive or an
      assembly reference?) (CS1061) (sessionTest)



      Error CS1061: 'ISession' does not contain a definition for 'GetString'
      and no extension method 'GetString' accepting a first argument of type
      'ISession' could be found (are you missing a using directive or an
      assembly reference?) (CS1061) (sessionTest)




      It looks like i can't set session values as string, int etc. I can only do it with Set and it suggest me to use




      String and byte




      Can you help me?










      share|improve this question













      following to this link



      When im trying to build app maked like this, i have problem in HomeController.cs :




      Error CS1061: 'ISession' does not contain a definition for 'SetString'
      and no extension method 'SetString' accepting a first argument of type
      'ISession' could be found (are you missing a using directive or an
      assembly reference?) (CS1061) (sessionTest)



      Error CS1061: 'ISession' does not contain a definition for 'GetString'
      and no extension method 'GetString' accepting a first argument of type
      'ISession' could be found (are you missing a using directive or an
      assembly reference?) (CS1061) (sessionTest)




      It looks like i can't set session values as string, int etc. I can only do it with Set and it suggest me to use




      String and byte




      Can you help me?







      c# asp.net .net asp.net-mvc






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 at 16:10









      Kamil

      528




      528
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          Add Nuget package Microsoft.AspNetCore.Http.Extensions to your project.



          This will give you the extension methods for Session, such as SetString GetString, etc.



          Remember to add:




          using Microsoft.AspNetCore.Http;







          share|improve this answer























          • Just add to project or use ? Because when im using its not working.
            – Kamil
            Nov 19 at 16:21






          • 1




            @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
            – Ryan Wilson
            Nov 19 at 16:23












          • i have a mac .. cant find NPM in Tools
            – Kamil
            Nov 19 at 17:12










          • @Kamil Do you have Visual Studio?
            – Ryan Wilson
            Nov 19 at 17:13










          • sure, i have Visual Studio Community for Mac.
            – Kamil
            Nov 19 at 17:15











          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',
          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%2f53378623%2fasp-net-razor-mvc-core-webapplication-problem-with-sessions%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          Add Nuget package Microsoft.AspNetCore.Http.Extensions to your project.



          This will give you the extension methods for Session, such as SetString GetString, etc.



          Remember to add:




          using Microsoft.AspNetCore.Http;







          share|improve this answer























          • Just add to project or use ? Because when im using its not working.
            – Kamil
            Nov 19 at 16:21






          • 1




            @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
            – Ryan Wilson
            Nov 19 at 16:23












          • i have a mac .. cant find NPM in Tools
            – Kamil
            Nov 19 at 17:12










          • @Kamil Do you have Visual Studio?
            – Ryan Wilson
            Nov 19 at 17:13










          • sure, i have Visual Studio Community for Mac.
            – Kamil
            Nov 19 at 17:15















          up vote
          1
          down vote



          accepted










          Add Nuget package Microsoft.AspNetCore.Http.Extensions to your project.



          This will give you the extension methods for Session, such as SetString GetString, etc.



          Remember to add:




          using Microsoft.AspNetCore.Http;







          share|improve this answer























          • Just add to project or use ? Because when im using its not working.
            – Kamil
            Nov 19 at 16:21






          • 1




            @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
            – Ryan Wilson
            Nov 19 at 16:23












          • i have a mac .. cant find NPM in Tools
            – Kamil
            Nov 19 at 17:12










          • @Kamil Do you have Visual Studio?
            – Ryan Wilson
            Nov 19 at 17:13










          • sure, i have Visual Studio Community for Mac.
            – Kamil
            Nov 19 at 17:15













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          Add Nuget package Microsoft.AspNetCore.Http.Extensions to your project.



          This will give you the extension methods for Session, such as SetString GetString, etc.



          Remember to add:




          using Microsoft.AspNetCore.Http;







          share|improve this answer














          Add Nuget package Microsoft.AspNetCore.Http.Extensions to your project.



          This will give you the extension methods for Session, such as SetString GetString, etc.



          Remember to add:




          using Microsoft.AspNetCore.Http;








          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 19 at 20:14









          Kamil

          528




          528










          answered Nov 19 at 16:14









          Ryan Wilson

          3,3951418




          3,3951418












          • Just add to project or use ? Because when im using its not working.
            – Kamil
            Nov 19 at 16:21






          • 1




            @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
            – Ryan Wilson
            Nov 19 at 16:23












          • i have a mac .. cant find NPM in Tools
            – Kamil
            Nov 19 at 17:12










          • @Kamil Do you have Visual Studio?
            – Ryan Wilson
            Nov 19 at 17:13










          • sure, i have Visual Studio Community for Mac.
            – Kamil
            Nov 19 at 17:15


















          • Just add to project or use ? Because when im using its not working.
            – Kamil
            Nov 19 at 16:21






          • 1




            @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
            – Ryan Wilson
            Nov 19 at 16:23












          • i have a mac .. cant find NPM in Tools
            – Kamil
            Nov 19 at 17:12










          • @Kamil Do you have Visual Studio?
            – Ryan Wilson
            Nov 19 at 17:13










          • sure, i have Visual Studio Community for Mac.
            – Kamil
            Nov 19 at 17:15
















          Just add to project or use ? Because when im using its not working.
          – Kamil
          Nov 19 at 16:21




          Just add to project or use ? Because when im using its not working.
          – Kamil
          Nov 19 at 16:21




          1




          1




          @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
          – Ryan Wilson
          Nov 19 at 16:23






          @Kamil You need to go under Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution in Visual Studio then search the web for the package I listed in my answer. It will then ask if you want to install this package to your project, which you should choose yes.
          – Ryan Wilson
          Nov 19 at 16:23














          i have a mac .. cant find NPM in Tools
          – Kamil
          Nov 19 at 17:12




          i have a mac .. cant find NPM in Tools
          – Kamil
          Nov 19 at 17:12












          @Kamil Do you have Visual Studio?
          – Ryan Wilson
          Nov 19 at 17:13




          @Kamil Do you have Visual Studio?
          – Ryan Wilson
          Nov 19 at 17:13












          sure, i have Visual Studio Community for Mac.
          – Kamil
          Nov 19 at 17:15




          sure, i have Visual Studio Community for Mac.
          – Kamil
          Nov 19 at 17:15


















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53378623%2fasp-net-razor-mvc-core-webapplication-problem-with-sessions%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







          Popular posts from this blog

          Costa Masnaga

          Fotorealismo

          Sidney Franklin