Click here to Skip to main content
15,892,697 members
Home / Discussions / C#
   

C#

 
Questionget string from via Regex Pin
jojoba2027-Aug-14 7:02
jojoba2027-Aug-14 7:02 
AnswerRe: get string from via Regex Pin
Rob Philpott27-Aug-14 9:13
Rob Philpott27-Aug-14 9:13 
QuestionRe: get string from via Regex Pin
jojoba2027-Aug-14 9:43
jojoba2027-Aug-14 9:43 
AnswerRe: get string from via Regex Pin
Bernhard Hiller27-Aug-14 20:40
Bernhard Hiller27-Aug-14 20:40 
AnswerRe: get string from via Regex Pin
Ravi Bhavnani27-Aug-14 9:36
professionalRavi Bhavnani27-Aug-14 9:36 
QuestionHow to write Context menu helper class Pin
Tejas Vaishnav26-Aug-14 21:09
professionalTejas Vaishnav26-Aug-14 21:09 
AnswerRe: How to write Context menu helper class Pin
Eddy Vluggen26-Aug-14 22:27
professionalEddy Vluggen26-Aug-14 22:27 
GeneralRe: How to write Context menu helper class Pin
Rob Philpott26-Aug-14 22:38
Rob Philpott26-Aug-14 22:38 
GeneralRe: How to write Context menu helper class Pin
Tejas Vaishnav26-Aug-14 23:00
professionalTejas Vaishnav26-Aug-14 23:00 
GeneralRe: How to write Context menu helper class Pin
Eddy Vluggen27-Aug-14 0:28
professionalEddy Vluggen27-Aug-14 0:28 
AnswerRe: How to write Context menu helper class Pin
Tejas Vaishnav27-Aug-14 1:26
professionalTejas Vaishnav27-Aug-14 1:26 
GeneralRe: How to write Context menu helper class Pin
Eddy Vluggen27-Aug-14 8:12
professionalEddy Vluggen27-Aug-14 8:12 
Questionc# XML nodelist to datagrid Pin
jdpiper6526-Aug-14 11:44
jdpiper6526-Aug-14 11:44 
AnswerRe: c# XML nodelist to datagrid Pin
Bernhard Hiller26-Aug-14 20:55
Bernhard Hiller26-Aug-14 20:55 
GeneralRe: c# XML nodelist to datagrid Pin
jdpiper6527-Aug-14 4:58
jdpiper6527-Aug-14 4:58 
Questionscraping C# Pin
jojoba2026-Aug-14 10:23
jojoba2026-Aug-14 10:23 
AnswerRe: scraping C# Pin
Dave Kreskowiak26-Aug-14 12:13
mveDave Kreskowiak26-Aug-14 12:13 
SuggestionRe: scraping C# Pin
jojoba2027-Aug-14 6:59
jojoba2027-Aug-14 6:59 
QuestionObject Reference Error Pin
Member 914293626-Aug-14 7:29
Member 914293626-Aug-14 7:29 
Hi All,

Can anyone help, I am getting an object reference error in my code. All I am doing is adding two tables to one table, the tables that are being added are Genealogy Table and Relationship Table to Details Table.

The error is below:

An object reference is required for the non-static field, method, or property 'MvcGenealogy.Models.GRHolding.GetDetailID(System.Web.HttpContextBase)'

The error is part of a holding model, the code that is causing the error is below:

C#
public static GRHolding GetDetail(HttpContextBase context)
        {
            var detail = new GRHolding();
            detail.GRHoldingID = GRHolding.GetDetailID(context);
            return detail;
        }

It references the GetDetailID, the code is below and come from the same Model.GRHolding:

C#
public string GetDetailID(HttpContextBase context)
        {
            if (context.Session[DetailsSessionKey] == null)
            {
                if (!string.IsNullOrWhiteSpace(context.User.Identity.Name))
                {
                    context.Session[DetailsSessionKey] = context.User.Identity.Name;
                }
                else
                {
                // Generate a new random GUID using System.Guid class
                    Guid tempDetailsID = Guid.NewGuid();
                    // Send tempDetailsID back to client as a cookie
                    context.Session[DetailsSessionKey] = tempDetailsID.ToString();
                }
            }
            return context.Session[DetailsSessionKey].ToString();
        }

I do have a Session in my Model call DetailsSessionKey which is a string and identifies with the DetailsID. The code that declares this is here:

C#
public const string DetailsSessionKey = "DetailsID";


I think the problem is in my session because the error is with this line of code "detail.GRHoldingID = GRHolding.GetDetailID(context);", which under the GetDetail in my GRHolding.cs model. It is not converting it to a string properly. I think it is something minor in the session, can anyone help? All I am to doing is associating two tables, (Genealogy table and Relationship table), with one table, (Details table).
AnswerRe: Object Reference Error Pin
OriginalGriff26-Aug-14 8:17
mveOriginalGriff26-Aug-14 8:17 
GeneralRe: Object Reference Error Pin
Member 914293626-Aug-14 19:17
Member 914293626-Aug-14 19:17 
AnswerRe: Object Reference Error Pin
Richard Deeming26-Aug-14 9:21
mveRichard Deeming26-Aug-14 9:21 
GeneralRe: Object Reference Error Pin
Member 914293626-Aug-14 19:02
Member 914293626-Aug-14 19:02 
GeneralRe: Object Reference Error Pin
Bernhard Hiller26-Aug-14 21:05
Bernhard Hiller26-Aug-14 21:05 
QuestionSpeech recogination of specific language Pin
frech8726-Aug-14 1:16
frech8726-Aug-14 1:16 

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.