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?
c# asp.net .net asp.net-mvc
add a comment |
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?
c# asp.net .net asp.net-mvc
add a comment |
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?
c# asp.net .net asp.net-mvc
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
c# asp.net .net asp.net-mvc
asked Nov 19 at 16:10
Kamil
528
528
add a comment |
add a comment |
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;
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 underTools -> Nuget Package Manager -> Manage Nuget Packages for Solution
inVisual 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
|
show 1 more comment
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;
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 underTools -> Nuget Package Manager -> Manage Nuget Packages for Solution
inVisual 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
|
show 1 more comment
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;
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 underTools -> Nuget Package Manager -> Manage Nuget Packages for Solution
inVisual 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
|
show 1 more comment
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;
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;
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 underTools -> Nuget Package Manager -> Manage Nuget Packages for Solution
inVisual 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
|
show 1 more comment
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 underTools -> Nuget Package Manager -> Manage Nuget Packages for Solution
inVisual 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
|
show 1 more comment
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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