Click here to Skip to main content
15,888,208 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: call web service from one server Pin
N a v a n e e t h10-Feb-10 4:23
N a v a n e e t h10-Feb-10 4:23 
QuestionHow to play movie clips and swf files in asp.net Pin
CHANDUA10-Feb-10 2:27
CHANDUA10-Feb-10 2:27 
AnswerRe: How to play movie clips and swf files in asp.net Pin
Richard MacCutchan10-Feb-10 4:45
mveRichard MacCutchan10-Feb-10 4:45 
QuestionPopUp Pin
Civic0610-Feb-10 2:12
Civic0610-Feb-10 2:12 
AnswerRe: PopUp Pin
PunkIsNotDead10-Feb-10 8:32
PunkIsNotDead10-Feb-10 8:32 
GeneralRe: PopUp Pin
Civic0611-Feb-10 2:15
Civic0611-Feb-10 2:15 
QuestionBoundFiled/GridView Pin
-Muc_10-Feb-10 1:25
-Muc_10-Feb-10 1:25 
AnswerRe: BoundFiled/GridView Pin
PunkIsNotDead10-Feb-10 8:26
PunkIsNotDead10-Feb-10 8:26 
Hi! i've seen that you've solved your row sorting problem! nice! Wink | ;) but now your problem is? you have to read the RowUpdating event and also use the RowCommand event! if you click the 'edit' command, c# runs in RowUpdating event and then fires RowCommand (using e.CommandName as "Edit"). using this you can hide or make visible the columns. ex.
foreach (GridViewRow r in GV_ServiciosDetalles.Rows)
                {
                    ((Panel)r.FindControl("Panel1")).Style.Remove("display");//Make column visible true
                    ((Panel)r.FindControl("Panel2")).Style["display"] = "none";//Make column visible false
                }
So in panel 1 you have a label with Text='<%#Eval("YourBoundField")%>' and in panel 2 you have a textbox with same thing. good luck
GeneralRe: BoundFiled/GridView Pin
-Muc_10-Feb-10 9:18
-Muc_10-Feb-10 9:18 
GeneralRe: BoundFiled/GridView Pin
PunkIsNotDead10-Feb-10 10:40
PunkIsNotDead10-Feb-10 10:40 
QuestionIndex was outside the bounds of the array? Pin
mdrizwan_110-Feb-10 0:36
mdrizwan_110-Feb-10 0:36 
AnswerRe: Index was outside the bounds of the array? Pin
Gaurav Dudeja India10-Feb-10 1:13
Gaurav Dudeja India10-Feb-10 1:13 
GeneralRe: Index was outside the bounds of the array? Pin
mdrizwan_110-Feb-10 1:40
mdrizwan_110-Feb-10 1:40 
GeneralRe: Index was outside the bounds of the array? Pin
mdrizwan_110-Feb-10 1:47
mdrizwan_110-Feb-10 1:47 
GeneralRe: Index was outside the bounds of the array? Pin
Brij10-Feb-10 2:12
mentorBrij10-Feb-10 2:12 
AnswerRe: Index was outside the bounds of the array? Pin
Brij10-Feb-10 1:19
mentorBrij10-Feb-10 1:19 
GeneralRe: Index was outside the bounds of the array? Pin
mdrizwan_110-Feb-10 1:40
mdrizwan_110-Feb-10 1:40 
QuestionGoogle Map Pin
BK Komal10-Feb-10 0:25
BK Komal10-Feb-10 0:25 
AnswerRe: Google Map Pin
nainakarri10-Feb-10 1:03
nainakarri10-Feb-10 1:03 
GeneralRe: Google Map Pin
BK Komal10-Feb-10 1:07
BK Komal10-Feb-10 1:07 
GeneralRe: Google Map Pin
nainakarri10-Feb-10 1:18
nainakarri10-Feb-10 1:18 
GeneralRe: Google Map Pin
BK Komal10-Feb-10 2:12
BK Komal10-Feb-10 2:12 
Questionajax problem Pin
Mogamboo_Khush_Hua9-Feb-10 23:55
Mogamboo_Khush_Hua9-Feb-10 23:55 
AnswerRe: ajax problem Pin
Calla10-Feb-10 0:20
Calla10-Feb-10 0:20 
GeneralRe: ajax problem Pin
Mogamboo_Khush_Hua10-Feb-10 1:11
Mogamboo_Khush_Hua10-Feb-10 1:11 

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.