Click here to Skip to main content
15,884,388 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem with GreedView edit mode Pin
Member 1098582229-Nov-15 6:29
Member 1098582229-Nov-15 6:29 
QuestionHow do I read contents of iis log in windows\system32\Logfiles\w3svc1? (SOLVED) Pin
samflex24-Nov-15 4:20
samflex24-Nov-15 4:20 
AnswerRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
Richard Deeming24-Nov-15 9:02
mveRichard Deeming24-Nov-15 9:02 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
samflex24-Nov-15 16:13
samflex24-Nov-15 16:13 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
F-ES Sitecore24-Nov-15 22:25
professionalF-ES Sitecore24-Nov-15 22:25 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
Richard Deeming25-Nov-15 2:38
mveRichard Deeming25-Nov-15 2:38 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
samflex25-Nov-15 6:12
samflex25-Nov-15 6:12 
QuestionLinq query adding results to a new table Pin
byka23-Nov-15 9:51
byka23-Nov-15 9:51 
I am using Linq query to pull the latest 3 dates for a given record: EEGRP, EID.
However I am having issues when adding a new row into new table with non key columns:
VB
result.Rows.Add .... item.EENAML.. etc.

Could you tell me what I am doing incorrect?

VB
Dim data = myDataTable.AsEnumerable().GroupBy(Function(r) New With {Key .EEGRP = r.Field(Of String)("EEGRP"), Key .EESSN = r.Field(Of String)("EID")},
                     Function(key, rows) New With
                     {
                         Key .EEGRP = key.EEGRP,
                         Key .ESSN = key.EID,
                     .Dates = rows.Select(Function(r) r.Field(Of DateTime?)("DEIBCY") & ("DIIBYR") & ("D.DIIBMT") & ("DEIBDY")) _
                         .OrderByDescending(Function(d) d).Take(3).ToList()
                     })

                     'Create new table with original table schema
                     Dim result As New DataTable
                     result = myDataTable.Clone()
                    'Create new  row
                     For Each item In data
                         result.Rows.Add(item.EEGRP,item.EID, item.EENAML,item.EENAMF,item.EENAMM,item.EEADD1,item.EEADD2,,,, _

Questionasync and await in asp.net Pin
Anil Sharma198323-Nov-15 1:25
professionalAnil Sharma198323-Nov-15 1:25 
AnswerRe: async and await in asp.net Pin
Richard Deeming23-Nov-15 2:19
mveRichard Deeming23-Nov-15 2:19 
AnswerRe: async and await in asp.net Pin
ZurdoDev23-Nov-15 2:57
professionalZurdoDev23-Nov-15 2:57 
QuestionStudent Grade and Grade Point Callculation Pin
Aliyu Usman21-Nov-15 11:45
Aliyu Usman21-Nov-15 11:45 
AnswerRe: Student Grade and Grade Point Callculation Pin
Garth J Lancaster21-Nov-15 12:19
professionalGarth J Lancaster21-Nov-15 12:19 
QuestionStored Procedure returns no column in entity framework Pin
Er. Aamir Khan KCNIT Banda20-Nov-15 19:49
Er. Aamir Khan KCNIT Banda20-Nov-15 19:49 
AnswerRe: Stored Procedure returns no column in entity framework Pin
Richard MacCutchan20-Nov-15 21:55
mveRichard MacCutchan20-Nov-15 21:55 
GeneralRe: Stored Procedure returns no column in entity framework Pin
Er. Aamir Khan KCNIT Banda20-Nov-15 22:01
Er. Aamir Khan KCNIT Banda20-Nov-15 22:01 
AnswerRe: Stored Procedure returns no column in entity framework Pin
ZurdoDev23-Nov-15 2:58
professionalZurdoDev23-Nov-15 2:58 
QuestionChart Control Pin
BobbyStrain20-Nov-15 18:09
BobbyStrain20-Nov-15 18:09 
AnswerRe: Chart Control Pin
ZurdoDev23-Nov-15 2:59
professionalZurdoDev23-Nov-15 2:59 
GeneralRe: Chart Control Pin
BobbyStrain26-Nov-15 5:49
BobbyStrain26-Nov-15 5:49 
Questionjquery auto complete with oracle and vb.net Pin
Member 1215608920-Nov-15 9:28
Member 1215608920-Nov-15 9:28 
AnswerRe: jquery auto complete with oracle and vb.net Pin
Richard Deeming23-Nov-15 2:16
mveRichard Deeming23-Nov-15 2:16 
QuestionEncryption / Decryption Pin
jkirkerx20-Nov-15 7:51
professionaljkirkerx20-Nov-15 7:51 
AnswerRe: Encryption / Decryption Pin
ZurdoDev23-Nov-15 3:01
professionalZurdoDev23-Nov-15 3:01 
GeneralRe: Encryption / Decryption Pin
jkirkerx24-Nov-15 12:23
professionaljkirkerx24-Nov-15 12:23 

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.