Click here to Skip to main content
16,008,469 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: dll Pin
That's Aragon6-Feb-08 19:10
That's Aragon6-Feb-08 19:10 
GeneralRe: dll Pin
Abhijit Jana6-Feb-08 19:11
professionalAbhijit Jana6-Feb-08 19:11 
QuestionHow to display results from webservice method in a webform? Pin
syamooo6-Feb-08 18:51
syamooo6-Feb-08 18:51 
AnswerRe: How to display results from webservice method in a webform? Pin
Abhijit Jana6-Feb-08 19:14
professionalAbhijit Jana6-Feb-08 19:14 
GeneralRe: How to display results from webservice method in a webform? Pin
syamooo6-Feb-08 19:43
syamooo6-Feb-08 19:43 
GeneralRe: How to display results from webservice method in a webform? Pin
Abhijit Jana6-Feb-08 19:55
professionalAbhijit Jana6-Feb-08 19:55 
GeneralRe: How to display results from webservice method in a webform? Pin
Sandeep Akhare7-Feb-08 0:49
Sandeep Akhare7-Feb-08 0:49 
Generalthree level drill down datagrid problem Pin
uglyeyes6-Feb-08 18:50
uglyeyes6-Feb-08 18:50 
Hi! I am having problem binding the third datagrid below are my codes

Private Sub ParentGrid_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles ParentGrid.ItemCommand

Select Case e.CommandName

Case "ExpandJob"

Dim img As ImageButton

img = e.Item.Cells(1).FindControl("btnExpandJob")

If img.ImageUrl = "/Images/Plus.gif" Then

img.ImageUrl = "/Images/Minus.gif"

Else

img.ImageUrl = "/Images/Plus.gif"

End If

Dim exp As PlaceHolder

exp = e.Item.Cells(1).FindControl("ExpandJob")

Dim dgChildGrid As DataGrid

dgChildGrid = CType(e.Item.FindControl("dgChildGrid "), DataGrid)

If (Not dgChildGrid Is Nothing) Then

dgChildGrid .DataSource = getAssetsCapexByProperty(e.Item.Cells(0).Text) -->a set of data

dgChildGrid .DataBind()

End If

exp.Visible = Not exp.Visible

End Select

End Sub



now i have datakeyfield in dgChildGrid. when i click on a linkbutton with in this dgchildgrid i want to populate dgSubChildgrid within dgchildgrid but for doing that i need to get to dgchildgrid_itemcommand method. I am not sure how do i do that. could someone please point me to right direction or any examples will be great.



thanks
GeneralRe: three level drill down datagrid problem Pin
N a v a n e e t h6-Feb-08 19:04
N a v a n e e t h6-Feb-08 19:04 
GeneralRe: three level drill down datagrid problem Pin
uglyeyes6-Feb-08 19:51
uglyeyes6-Feb-08 19:51 
GeneralRe: three level drill down datagrid problem Pin
N a v a n e e t h6-Feb-08 19:56
N a v a n e e t h6-Feb-08 19:56 
GeneralRe: three level drill down datagrid problem Pin
uglyeyes6-Feb-08 20:05
uglyeyes6-Feb-08 20:05 
GeneralRe: three level drill down datagrid problem Pin
N a v a n e e t h6-Feb-08 20:22
N a v a n e e t h6-Feb-08 20:22 
GeneralRe: three level drill down datagrid problem Pin
uglyeyes6-Feb-08 21:46
uglyeyes6-Feb-08 21:46 
GeneralRe: three level drill down datagrid problem Pin
N a v a n e e t h6-Feb-08 21:53
N a v a n e e t h6-Feb-08 21:53 
GeneralRe: three level drill down datagrid problem Pin
uglyeyes7-Feb-08 12:00
uglyeyes7-Feb-08 12:00 
Questionhow can I improove my page activity Pin
Max0live6-Feb-08 18:45
Max0live6-Feb-08 18:45 
AnswerRe: how can I improove my page activity Pin
N a v a n e e t h6-Feb-08 18:59
N a v a n e e t h6-Feb-08 18:59 
AnswerRe: how can I improove my page activity Pin
Sandeep Akhare7-Feb-08 0:52
Sandeep Akhare7-Feb-08 0:52 
Generaldownload emails to ur system Pin
Member 38798816-Feb-08 17:34
Member 38798816-Feb-08 17:34 
GeneralRe: download emails to ur system Pin
N a v a n e e t h6-Feb-08 18:56
N a v a n e e t h6-Feb-08 18:56 
Questionhow do I access a html element from code Pin
Shimmy Weitzhandler6-Feb-08 17:25
Shimmy Weitzhandler6-Feb-08 17:25 
AnswerRe: how do I access a html element from code [modified] Pin
That's Aragon6-Feb-08 18:22
That's Aragon6-Feb-08 18:22 
GeneralBinding size value to AJAX animations extender [modified] Pin
Member 44990376-Feb-08 15:40
professionalMember 44990376-Feb-08 15:40 
QuestionControl to bind to one record Pin
liquidplasmaflow6-Feb-08 11:07
liquidplasmaflow6-Feb-08 11:07 

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.