hi: iwant to display field in the gridview with link to go to the location of this file like(
ftp://gisappdata/PlansEdits/1422/1)this field will be filled in DataSet from Adapter and then filled in gridview ,i'm do many thing in using <A href> or buttonfield or hyperlinkfield or jscript but all of them failds iwant help to get code in gridview when click to this cell go to the location ,the location is not the same.
Thank's for help.
This code will fill the DataSet
Dim PlanMahderNo_Value As String = txtPlanNOValue.Text
Dim sqlstatment_select As String = "SELECT GISMAHDER.PLANMAHDER.PLANMAHDERNO,GISMAHDER.PLANMA HDER.PLANMAHDERVERSION,GISMAHDER.MAHDER.MahdarID,G ISMAHDER.MAHDER.MAHDARNO,GISMAHDER.MAHDER.MAHDARYE AR,GISMAHDER.MAHDER.MAHDARREM, GISMAHDER.MAHDER.MAHDARSTATUS,GISMAHDER.MAHDER.REM ARKS,GISMAHDER.MAHDER.PATH FROM GISMAHDER.PLANMAHDERLINK INNER JOIN GISMAHDER.PLANMAHDER ON GISMAHDER.PLANMAHDERLINK.PLANMAHDERID = GISMAHDER.PLANMAHDER.PLANMAHDERID INNER JOIN GISMAHDER.MAHDER ON GISMAHDER.PLANMAHDERLINK.MAHDERID = GISMAHDER.MAHDER.MAHDARID WHERE(GISMAHDER.PLANMAHDER.PLANMAHDERNO = " & "'" & txtPlanNOValue.Text & "'" & ")"
Dim constr As String = "Data Source=winsde;Persist Security Info=True;User ID=mahder;Password=mah;Unicode=True"
Dim con As OracleConnection = New OracleConnection(constr)
Dim ORAcom As OracleCommand = New OracleCommand(sqlstatment_select, con)
Dim D_Adabter As OracleDataAdapter = New OracleDataAdapter
Dim D_Set As DataSet = New DataSet
D_Adabter.SelectCommand = ORAcom
D_Adabter.Fill(D_Set)
----------------------------------
----------------------------------
GVResult.DataSource = D_Set
GVResult.DataBind()