Click here to Skip to main content
15,925,255 members
Home / Discussions / C#
   

C#

 
GeneralRe: Intersting question.... Pin
N a v a n e e t h21-Nov-07 22:43
N a v a n e e t h21-Nov-07 22:43 
GeneralRe: Intersting question.... Pin
Pankaj - Joshi21-Nov-07 23:07
Pankaj - Joshi21-Nov-07 23:07 
GeneralRe: Intersting question.... Pin
N a v a n e e t h21-Nov-07 23:48
N a v a n e e t h21-Nov-07 23:48 
GeneralRe: Intersting question.... Pin
Pankaj - Joshi21-Nov-07 23:59
Pankaj - Joshi21-Nov-07 23:59 
GeneralRe: Intersting question.... Pin
N a v a n e e t h22-Nov-07 0:33
N a v a n e e t h22-Nov-07 0:33 
GeneralRe: Intersting question.... Pin
Andrei Ungureanu22-Nov-07 0:37
Andrei Ungureanu22-Nov-07 0:37 
GeneralRe: Intersting question.... Pin
Mark Churchill22-Nov-07 1:05
Mark Churchill22-Nov-07 1:05 
Questiongridview row select [modified] Pin
Sunil Wise21-Nov-07 21:27
professionalSunil Wise21-Nov-07 21:27 
i have one button and one gridview in that i have filled data using
public void GetData()<br />
    {   SqlConnection con = new SqlConnection(constr);<br />
        string cmd = "select a.errname as ErrorName, m.errortype as ErrorType, a.errpointsdeducted as PointsDeduction, convert(varchar,a.createddate,104) as CreatedDate from auditerrors a,auditerrormaster m where a.errtypeid=m.internalid order by m.errortype";<br />
        SqlDataAdapter da = new SqlDataAdapter(cmd,con);<br />
        DataSet ds = new DataSet();<br />
        DataTable dt = new DataTable();<br />
        da.Fill(ds, "auditerrors");<br />
        dt = ds.Tables["auditerrors"];<br />
        gvAuditErrors.DataSource=ds.Tables[0];<br />
        gvAuditErrors.DataBind();}

in the same project i have another page with one text box in it. i want to select a row in the grid view and after selecting a row in grid view when i click on the button i want to transfer the createddate of that particular row in to the textbox of the other page
if anybody got the solution plz do let me know
tasks:
selecting a row on double clicking the row
transfering the content from first page to the other

regards
sunil



-- modified at 5:07 Thursday 22nd November, 2007
QuestionRe: gridview row select Pin
Sunil Wise22-Nov-07 3:11
professionalSunil Wise22-Nov-07 3:11 
QuestionC#.NET Push URL from textbox on a button click Pin
D i x y21-Nov-07 21:09
D i x y21-Nov-07 21:09 
AnswerRe: C#.NET Push URL from textbox on a button click Pin
Jonathan [Darka]21-Nov-07 22:12
professionalJonathan [Darka]21-Nov-07 22:12 
QuestionC#.NET Push URL from textbox on a button click Pin
D i x y21-Nov-07 21:08
D i x y21-Nov-07 21:08 
QuestionC#.NET Push URL from text box on button click Pin
D i x y21-Nov-07 21:06
D i x y21-Nov-07 21:06 
QuestionAdd/Remove program through code Pin
dan!sh 21-Nov-07 20:56
professional dan!sh 21-Nov-07 20:56 
NewsA Working Export from DB to CSV Pin
MumbleB21-Nov-07 20:34
MumbleB21-Nov-07 20:34 
QuestionSQL Image Data Type Pin
tr_thorn21-Nov-07 20:34
tr_thorn21-Nov-07 20:34 
AnswerRe: SQL Image Data Type Pin
Colin Angus Mackay21-Nov-07 21:30
Colin Angus Mackay21-Nov-07 21:30 
GeneralRe: SQL Image Data Type Pin
tr_thorn21-Nov-07 21:46
tr_thorn21-Nov-07 21:46 
AnswerRe: SQL Image Data Type Pin
Pankaj - Joshi21-Nov-07 22:00
Pankaj - Joshi21-Nov-07 22:00 
AnswerRe: SQL Image Data Type Pin
tr_thorn21-Nov-07 22:44
tr_thorn21-Nov-07 22:44 
GeneralRe: SQL Image Data Type Pin
Pankaj - Joshi21-Nov-07 23:11
Pankaj - Joshi21-Nov-07 23:11 
GeneralRe: SQL Image Data Type Pin
tr_thorn22-Nov-07 0:48
tr_thorn22-Nov-07 0:48 
GeneralRe: SQL Image Data Type Pin
Pankaj - Joshi22-Nov-07 16:10
Pankaj - Joshi22-Nov-07 16:10 
QuestionHow to add Combobox's item Pin
jason_mf21-Nov-07 20:25
jason_mf21-Nov-07 20:25 
AnswerRe: How to add Combobox's item Pin
Sun Rays21-Nov-07 21:00
Sun Rays21-Nov-07 21:00 

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.