Click here to Skip to main content
15,899,825 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionif employee present or absence [modified] Pin
sathyan_829414-Aug-08 7:03
sathyan_829414-Aug-08 7:03 
AnswerRe: if employee present or absence Pin
Christian Graus14-Aug-08 11:46
protectorChristian Graus14-Aug-08 11:46 
QuestionHow to save and display a sorted ListBox Control?? Pin
Imran Adam14-Aug-08 5:33
Imran Adam14-Aug-08 5:33 
GeneralRe: How to save and display a sorted ListBox Control??[Ignore - RePost] Pin
Manas Bhardwaj14-Aug-08 6:49
professionalManas Bhardwaj14-Aug-08 6:49 
AnswerIGNORE Pin
leckey14-Aug-08 14:34
leckey14-Aug-08 14:34 
AnswerRe: How to save and display a sorted ListBox Control?? Pin
Imran Adam14-Aug-08 22:56
Imran Adam14-Aug-08 22:56 
QuestionSpecial Row in Grid Pin
Nimua14-Aug-08 4:42
Nimua14-Aug-08 4:42 
AnswerRe: Special Row in Grid Pin
ToddHileHoffer14-Aug-08 9:41
ToddHileHoffer14-Aug-08 9:41 
Change the column to a template column.

Put two panels in the template. On the OnRowDataBound

protected void gridRowBound(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
// Updatae Items
if (e.Row.RowType == DataControlRowType.DataRow)
{

PanelA = (Panel) e.Row.FindControl("PanelA");
PanelB = (Panel)e.Row.FindControl("PanelB");

//Put your logic to display the panel based on the data item




}

}


I didn't get any requirements for the signature


QuestionLicense Cost for Visual Studio .NET ? Pin
Nizam Quadri14-Aug-08 2:57
Nizam Quadri14-Aug-08 2:57 
AnswerRe: License Cost for Visual Studio .NET ? Pin
Manas Bhardwaj14-Aug-08 3:26
professionalManas Bhardwaj14-Aug-08 3:26 
AnswerWTF? Pin
leckey14-Aug-08 5:28
leckey14-Aug-08 5:28 
GeneralRe: WTF? Pin
Paul Conrad14-Aug-08 6:44
professionalPaul Conrad14-Aug-08 6:44 
QuestionWhich is Better PHP or ASP.NET ? Pin
Nizam Quadri14-Aug-08 2:51
Nizam Quadri14-Aug-08 2:51 
AnswerRe: Which is Better PHP or ASP.NET ? Pin
scottgp14-Aug-08 3:08
professionalscottgp14-Aug-08 3:08 
JokeRe: Which is Better PHP or ASP.NET ? Pin
ToddHileHoffer14-Aug-08 4:38
ToddHileHoffer14-Aug-08 4:38 
AnswerRe: Which is Better PHP or ASP.NET ? Pin
Bardy8514-Aug-08 4:39
Bardy8514-Aug-08 4:39 
GeneralRe: Which is Better PHP or ASP.NET ? Pin
leckey14-Aug-08 5:29
leckey14-Aug-08 5:29 
QuestionReading Excel file without knowing its worksheet name Pin
goradaranaresh14-Aug-08 2:39
goradaranaresh14-Aug-08 2:39 
QuestionRun exe from bowser at client side Pin
nikhil123414-Aug-08 2:29
nikhil123414-Aug-08 2:29 
AnswerRe: Run exe from bowser at client side Pin
Christian Graus14-Aug-08 2:38
protectorChristian Graus14-Aug-08 2:38 
AnswerRe: Run exe from bowser at client side Pin
Manas Bhardwaj14-Aug-08 2:52
professionalManas Bhardwaj14-Aug-08 2:52 
QuestionPostback Pin
Agweet14-Aug-08 2:25
Agweet14-Aug-08 2:25 
AnswerRe: Postback Pin
Bardy8514-Aug-08 2:44
Bardy8514-Aug-08 2:44 
GeneralRe: Postback Pin
Agweet14-Aug-08 3:10
Agweet14-Aug-08 3:10 
QuestionASP to HTML Pin
The Web Developer14-Aug-08 2:12
The Web Developer14-Aug-08 2:12 

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.