Click here to Skip to main content
15,892,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: PHP vs asp.net Pin
Deflinek5-Dec-13 4:27
Deflinek5-Dec-13 4:27 
AnswerRe: PHP vs asp.net Pin
ZurdoDev6-Dec-13 10:19
professionalZurdoDev6-Dec-13 10:19 
GeneralRe: PHP vs asp.net Pin
jkirkerx7-Dec-13 14:02
professionaljkirkerx7-Dec-13 14:02 
QuestionHow to convert the HTML code to a control Pin
Member 104545925-Dec-13 2:11
Member 104545925-Dec-13 2:11 
GeneralRe: How to convert the HTML code to a control Pin
thatraja5-Dec-13 4:28
professionalthatraja5-Dec-13 4:28 
AnswerRe: How to convert the HTML code to a control Pin
ZurdoDev6-Dec-13 10:22
professionalZurdoDev6-Dec-13 10:22 
QuestionHow to write a Linq 'Where' clause for nullable datetime? Pin
miss7864-Dec-13 23:03
miss7864-Dec-13 23:03 
AnswerRe: How to write a Linq 'Where' clause for nullable datetime? Pin
cdpsource5-Dec-13 1:45
cdpsource5-Dec-13 1:45 
try this
C#
[HttpGet]
        public IEnumerable<database_WICs> GetDate(DateTime? start, DateTime? end)
        {
 
            var data = from c in db.database_WICs
                       where c.UploadDate == (start==null? c.UploadDate : start) &&
                             c.UploadDate == (end=null? c.UploadDate : end)
                       select c;
            return data.ToList();
        }

GeneralRe: How to write a Linq 'Where' clause for nullable datetime? Pin
miss7865-Dec-13 2:12
miss7865-Dec-13 2:12 
AnswerRe: How to write a Linq 'Where' clause for nullable datetime? Pin
Richard Deeming5-Dec-13 2:10
mveRichard Deeming5-Dec-13 2:10 
GeneralRe: How to write a Linq 'Where' clause for nullable datetime? Pin
miss7865-Dec-13 3:33
miss7865-Dec-13 3:33 
GeneralRe: How to write a Linq 'Where' clause for nullable datetime? Pin
Richard Deeming5-Dec-13 3:46
mveRichard Deeming5-Dec-13 3:46 
GeneralRe: How to write a Linq 'Where' clause for nullable datetime? Pin
miss7865-Dec-13 23:58
miss7865-Dec-13 23:58 
QuestionMultiple web.config file in a project Pin
Milind Panchal4-Dec-13 22:57
Milind Panchal4-Dec-13 22:57 
AnswerRe: Multiple web.config file in a project Pin
Richard MacCutchan5-Dec-13 0:57
mveRichard MacCutchan5-Dec-13 0:57 
AnswerRe: Multiple web.config file in a project Pin
ZurdoDev6-Dec-13 10:23
professionalZurdoDev6-Dec-13 10:23 
AnswerRe: Multiple web.config file in a project Pin
Amir Hamza Md. Kayes7-Dec-13 8:41
professionalAmir Hamza Md. Kayes7-Dec-13 8:41 
AnswerRe: Multiple web.config file in a project Pin
joginder-banger7-Dec-13 8:53
professionaljoginder-banger7-Dec-13 8:53 
QuestionI want to display Name and code in drop down list Pin
glmjoy4-Dec-13 18:48
glmjoy4-Dec-13 18:48 
AnswerRe: I want to display Name and code in drop down list Pin
Dipti Mamidala4-Dec-13 19:00
Dipti Mamidala4-Dec-13 19:00 
Question.cmd file execution in asp.net Pin
Vishalsb4-Dec-13 18:45
Vishalsb4-Dec-13 18:45 
AnswerRe: .cmd file execution in asp.net Pin
Mycroft Holmes4-Dec-13 21:01
professionalMycroft Holmes4-Dec-13 21:01 
AnswerRe: .cmd file execution in asp.net Pin
Richard Deeming5-Dec-13 2:05
mveRichard Deeming5-Dec-13 2:05 
GeneralRe: .cmd file execution in asp.net Pin
Vishalsb5-Dec-13 2:25
Vishalsb5-Dec-13 2:25 
GeneralRe: .cmd file execution in asp.net Pin
Richard Deeming5-Dec-13 2:32
mveRichard Deeming5-Dec-13 2:32 

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.