Click here to Skip to main content
15,896,537 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionproblem while using md5 for password encryption Pin
Kissy1628-May-09 20:22
Kissy1628-May-09 20:22 
AnswerRe: problem while using md5 for password encryption Pin
ScottM128-May-09 20:35
ScottM128-May-09 20:35 
GeneralRe: problem while using md5 for password encryption Pin
Kissy1628-May-09 20:47
Kissy1628-May-09 20:47 
GeneralRe: problem while using md5 for password encryption Pin
Christian Graus28-May-09 21:13
protectorChristian Graus28-May-09 21:13 
GeneralRe: problem while using md5 for password encryption Pin
ScottM128-May-09 22:11
ScottM128-May-09 22:11 
GeneralRe: problem while using md5 for password encryption Pin
Kissy1628-May-09 23:38
Kissy1628-May-09 23:38 
AnswerRe: problem while using md5 for password encryption Pin
dwaipayan911-Aug-09 0:54
dwaipayan911-Aug-09 0:54 
QuestionLINQ to dataview........ Pin
pranavcool28-May-09 19:27
pranavcool28-May-09 19:27 
Hi,
I have written a linq query and bind it to a gridview. Now i want to implement sorting on gridview columns for which i want this linq query to store in dataview.

So how it is possible to store linq query in dataview.

the following is the code which i have written to bind gridview.

protected void BindGrid()
{
    try
    {
        var employees = from e in DetailContext.Employees orderby
        e.Emp_Code descending
        select new {e.Emp_Id,e.Emp_Code,e.F_Name,e.L_Name,e.Designation };
        GridView1.DataSource = employees;
        GridView1.DataBind();
    }
    catch (Exception ex)
    {
        throw ex;
    }
}


Pranav Dave

AnswerRe: LINQ to dataview........ Pin
padmanabhan N28-May-09 19:33
padmanabhan N28-May-09 19:33 
Questionhow to convert system.Drawing.Image to system.web.ui.webcontrols.image Pin
A k ch28-May-09 19:16
A k ch28-May-09 19:16 
AnswerRe: how to convert system.Drawing.Image to system.web.ui.webcontrols.image Pin
Christian Graus28-May-09 19:23
protectorChristian Graus28-May-09 19:23 
GeneralRe: how to convert system.Drawing.Image to system.web.ui.webcontrols.image Pin
A k ch28-May-09 19:31
A k ch28-May-09 19:31 
GeneralRe: how to convert system.Drawing.Image to system.web.ui.webcontrols.image Pin
Christian Graus28-May-09 20:09
protectorChristian Graus28-May-09 20:09 
GeneralRe: how to convert system.Drawing.Image to system.web.ui.webcontrols.image [modified] Pin
A k ch28-May-09 20:45
A k ch28-May-09 20:45 
QuestionHow to test my web application? Pin
Subin Alex28-May-09 18:58
Subin Alex28-May-09 18:58 
AnswerRe: How to test my web application? Pin
Christian Graus28-May-09 19:24
protectorChristian Graus28-May-09 19:24 
AnswerRe: How to test my web application? Pin
ScottM128-May-09 20:38
ScottM128-May-09 20:38 
AnswerRe: How to test my web application? Pin
Christian Graus28-May-09 21:11
protectorChristian Graus28-May-09 21:11 
QuestionProblem with LINQ to SQL classes Pin
sudhadotnet28-May-09 18:44
sudhadotnet28-May-09 18:44 
Questioncreate setup package visual studio Pin
sakis2428-May-09 11:49
sakis2428-May-09 11:49 
AnswerRe: create setup package visual studio Pin
Christian Graus28-May-09 12:54
protectorChristian Graus28-May-09 12:54 
GeneralRe: create setup package visual studio Pin
sakis2429-May-09 2:46
sakis2429-May-09 2:46 
Questionget data from website Pin
jainiraj28-May-09 6:48
jainiraj28-May-09 6:48 
AnswerRe: get data from website Pin
Ramesh Swaminathan28-May-09 7:04
Ramesh Swaminathan28-May-09 7:04 
QuestionSetFocus to a Textbox +AJAX Pin
Pawan Kiran28-May-09 5:33
Pawan Kiran28-May-09 5:33 

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.