i have a hyperlink called companyname in gridview .when i click it has to open popup window and provides details of that company.can someone explain how to call popup window in hyperlink
dskumar_85 -1 Junior Poster in Training
Recommended Answers
Jump to Postin the target property of the field, set it to _blank
Jump to PostHi... I would suggest passing the CompanyID in Session -- Session.Add("CompanyID") -- and retrieving the companyid -- Session.Item("ComanyID") from the popup.
Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) Handles GridView1.RowCommand If GridView1.Rows.Count - 1 > 0 Then If e.CommandName = "WHATEVERYOURBUTTONCOMMANDNAME" Then Dim CompanyID …
All 5 Replies
plazmo 1 Posting Whiz in Training
ericstenson 5 Posting Whiz in Training Team Colleague
giri.d24 0 Newbie Poster
ardeezstyle 0 Light Poster
imamul.karim 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.