Click here to Skip to main content
15,887,676 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
GeneralRe: [session] returns null Pin
xnaLearner18-Dec-12 0:12
xnaLearner18-Dec-12 0:12 
I want to store the users ID from the previous drop down so it will update automatically if they try to create another holiday (to replace the second drop down)

Im using a session variable to do this, My View:

//this coverts the user ID to a string and stores it in
C#
session["usernameID"]
string userID = currentPersonID.ToString();
Session["usernameID"] = userID;

-------------------------------------------------

//My Create:
//catches the session["UsernameID"], stores it in string 'xx'
//converts it to an int and stores it in currentPersonID
//then store the value of currentpersonID in the model

C#
public ActionResult Create()
        {
        string xx = (string)Session["usernameID"];

        int? currentPersonID = Convert.ToInt32(xx);

        HolidayList model = new HolidayList();
        model.currentPersonID = currentPersonID.Value;

-------------------------------------------------
This all works fine, howeve how do I display the value properly in the view?
Where I was using :

HTML
@Html.DropDownListFor(model => model.PersonId, new SelectList(ViewBag.Id, "Value", "Text"),"---Select---") 
i've tried:


HTML
@Html.TextBoxFor(model =>model.currentPersonID, "currentPersonID") 


//and

HTML
@Html.LabelFor(model =>model.currentPersonID)

hoping the correct ID would display, but only the text 'currentPersonID is displayed

please advise, thanks again
SuggestionRe: [session] returns null Pin
Chandrabhan Sangale18-Dec-12 17:59
professionalChandrabhan Sangale18-Dec-12 17:59 
QuestionMultilingual support for Web Application Pin
AB777117-Dec-12 23:18
AB777117-Dec-12 23:18 
AnswerRe: Multilingual support for Web Application Pin
Rahul Rajat Singh17-Dec-12 23:43
professionalRahul Rajat Singh17-Dec-12 23:43 
GeneralRe: Multilingual support for Web Application Pin
AB777118-Dec-12 2:27
AB777118-Dec-12 2:27 
AnswerRe: Multilingual support for Web Application Pin
Deflinek17-Dec-12 23:57
Deflinek17-Dec-12 23:57 
SuggestionRe: Multilingual support for Web Application Pin
Chandrabhan Sangale18-Dec-12 18:01
professionalChandrabhan Sangale18-Dec-12 18:01 
Questiongoogle map Pin
cdpsource17-Dec-12 20:52
cdpsource17-Dec-12 20:52 
AnswerRe: google map Pin
ZurdoDev18-Dec-12 4:55
professionalZurdoDev18-Dec-12 4:55 
QuestionProblem to send message from MSMQ Pin
TRAORE cheickna17-Dec-12 10:20
TRAORE cheickna17-Dec-12 10:20 
Questionexport report failed in crystal report Pin
himadribanik17-Dec-12 6:51
himadribanik17-Dec-12 6:51 
QuestionRefresh particular parts on masterpage Pin
cdpsource17-Dec-12 5:58
cdpsource17-Dec-12 5:58 
AnswerRe: Refresh particular parts on masterpage Pin
Matt U.17-Dec-12 6:51
Matt U.17-Dec-12 6:51 
GeneralRe: Refresh particular parts on masterpage Pin
cdpsource17-Dec-12 6:59
cdpsource17-Dec-12 6:59 
GeneralRe: Refresh particular parts on masterpage Pin
Matt U.17-Dec-12 7:06
Matt U.17-Dec-12 7:06 
GeneralRe: Refresh particular parts on masterpage Pin
cdpsource17-Dec-12 8:23
cdpsource17-Dec-12 8:23 
SuggestionRe: Refresh particular parts on masterpage Pin
Chandrabhan Sangale18-Dec-12 18:04
professionalChandrabhan Sangale18-Dec-12 18:04 
Questionsession variable / temp data Pin
xnaLearner17-Dec-12 4:25
xnaLearner17-Dec-12 4:25 

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.