Click here to Skip to main content
15,881,600 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionneed help creating web application Pin
solo_gaurav3-Sep-09 10:57
solo_gaurav3-Sep-09 10:57 
AnswerRe: need help creating web application Pin
Blue_Boy3-Sep-09 11:07
Blue_Boy3-Sep-09 11:07 
QuestionDebugging dynamically loaded controls Pin
Guillermo Jimenez3-Sep-09 10:44
Guillermo Jimenez3-Sep-09 10:44 
AnswerRe: Debugging dynamically loaded controls Pin
Abhishek Sur3-Sep-09 11:33
professionalAbhishek Sur3-Sep-09 11:33 
Questionasp.net ajax updatepanel progress Pin
Shahdat Hosain3-Sep-09 9:55
Shahdat Hosain3-Sep-09 9:55 
AnswerRe: asp.net ajax updatepanel progress Pin
Abhijit Jana3-Sep-09 19:38
professionalAbhijit Jana3-Sep-09 19:38 
QuestionEdraw Viewer component Pin
dptalt3-Sep-09 8:01
dptalt3-Sep-09 8:01 
QuestionHow to insert/update a row/cell in datagrid? Pin
skhan173-Sep-09 7:32
skhan173-Sep-09 7:32 
I don't understand how to update the row into the Datagrid to display a specific date format ??

[ds is my dataset]
foreach (DataRow r in ds.Tables[0].Rows)
{
     string dateString1 = r["First_Resurvey_Date"].ToString(); 
    DateTime dateTime=Convert.ToDateTime(dateString1);
    string [] dateStringArray= dateTime.GetDateTimeFormats();

    r["First_Resurvey_Date"]= dateStringArray[6]; [This doesn't work, I cannot just assign the specific value to a datagrid row/cell......I need help on how to do that] [dateStringArray[6], gives the date format as dd-MMM-YY, which is how I want to display my date in the application]
                       
    NotesLabel.Text= dateStringArray[6];
    NotesLabel.Visible=true;
 }
DataView view = ds.Tables[0].DefaultView;
resultsDatagrid.DataSource = view;
resultsDatagrid.DataBind();
resultsDatagrid.Visible = true;

AnswerRe: How to insert/update a row/cell in datagrid? Pin
Not Active3-Sep-09 7:47
mentorNot Active3-Sep-09 7:47 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
skhan173-Sep-09 9:16
skhan173-Sep-09 9:16 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
Not Active3-Sep-09 9:44
mentorNot Active3-Sep-09 9:44 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
skhan173-Sep-09 9:49
skhan173-Sep-09 9:49 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
Not Active3-Sep-09 10:10
mentorNot Active3-Sep-09 10:10 
QuestionRedirect URL problem Pin
zeeShan anSari3-Sep-09 7:10
zeeShan anSari3-Sep-09 7:10 
AnswerRe: Redirect URL problem Pin
Abhishek Sur3-Sep-09 9:28
professionalAbhishek Sur3-Sep-09 9:28 
GeneralRe: Redirect URL problem Pin
zeeShan anSari3-Sep-09 11:10
zeeShan anSari3-Sep-09 11:10 
AnswerRe: Redirect URL problem Pin
Edbert P3-Sep-09 16:33
Edbert P3-Sep-09 16:33 
QuestionSetting x-microsoftajax: Delta=true header is giving http error 400 Pin
Ash_VCPP3-Sep-09 4:31
Ash_VCPP3-Sep-09 4:31 
AnswerRe: Setting x-microsoftajax: Delta=true header is giving http error 400 Pin
Abhishek Sur3-Sep-09 7:42
professionalAbhishek Sur3-Sep-09 7:42 
GeneralRe: Setting x-microsoftajax: Delta=true header is giving http error 400 Pin
Ash_VCPP3-Sep-09 21:35
Ash_VCPP3-Sep-09 21:35 
Question[Message Deleted] Pin
ToddHileHoffer3-Sep-09 3:06
ToddHileHoffer3-Sep-09 3:06 
AnswerRe: Entity Model Insert Pin
Not Active3-Sep-09 3:35
mentorNot Active3-Sep-09 3:35 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 3:53
ToddHileHoffer3-Sep-09 3:53 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 4:09
ToddHileHoffer3-Sep-09 4:09 
GeneralRe: Entity Model Insert Pin
Not Active3-Sep-09 4:46
mentorNot Active3-Sep-09 4:46 

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.