Click here to Skip to main content
15,890,282 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionImplimeting indian regional languages in asp.net web application Pin
arunpal22-Apr-10 18:52
arunpal22-Apr-10 18:52 
AnswerRe: Implimeting indian regional languages in asp.net web application Pin
Sandeep Mewara22-Apr-10 19:29
mveSandeep Mewara22-Apr-10 19:29 
GeneralRe: Implimeting indian regional languages in asp.net web application Pin
arunpal28-Apr-10 21:18
arunpal28-Apr-10 21:18 
QuestionAdding and updating rows in a GridView Pin
Rob Bigg22-Apr-10 18:08
Rob Bigg22-Apr-10 18:08 
AnswerRe: Adding and updating rows in a GridView Pin
Sandeep Mewara22-Apr-10 19:46
mveSandeep Mewara22-Apr-10 19:46 
GeneralRe: Adding and updating rows in a GridView Pin
Rob Bigg23-Apr-10 7:40
Rob Bigg23-Apr-10 7:40 
GeneralRe: Adding and updating rows in a GridView Pin
Sandeep Mewara23-Apr-10 8:13
mveSandeep Mewara23-Apr-10 8:13 
QuestionTextBox Retains old data on dialog reloading Pin
FUNCTOR9922-Apr-10 14:27
FUNCTOR9922-Apr-10 14:27 
Hey!

I've got a dialog that I'm calling from javascript (showModalDialog). This dialog has 3 text boxes that get populated with data from a database in my Page_Load - !IsPostBack section of my code. It works fantastically the first time I run the dialog. I change one of the textboxes and click save which writes back to the DB to update that field, and then the window closes.

I open the dialog again, and the textbox which I just changed and saved in the DB (and confirmed that the DB has the new value) still has the original value! I even ran through the page in debug, and it shows the textbox getting assigned the updated value, and yet it still has the old one.

Anyone know what might be wrong? Something this small is enough to make all my other massive changes useless. ARG!!!

Thanks

...
if (!IsPostBack)
try
{
DataSet ds = new DataSet();
ds = programsClass.GetProgramInfo(iProgram);

txtOrder.Text = ds.Tables[0].Rows[0]["id_order"].ToString();
txtHeat.Text = ds.Tables[0].Rows[0]["id_heat"].ToString();
txtPipes.Text = ds.Tables[0].Rows[0]["num_pieces"].ToString();
...
AnswerRe: TextBox Retains old data on dialog reloading Pin
Arindam Tewary22-Apr-10 22:15
professionalArindam Tewary22-Apr-10 22:15 
GeneralRe: TextBox Retains old data on dialog reloading Pin
FUNCTOR9923-Apr-10 3:32
FUNCTOR9923-Apr-10 3:32 
AnswerRe: TextBox Retains old data on dialog reloading Pin
Arindam Tewary25-Apr-10 10:31
professionalArindam Tewary25-Apr-10 10:31 
GeneralRe: TextBox Retains old data on dialog reloading Pin
FUNCTOR9926-Apr-10 3:36
FUNCTOR9926-Apr-10 3:36 
Questionhow to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 10:27
Andraw11122-Apr-10 10:27 
AnswerRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:15
professionalJamil Hallal22-Apr-10 11:15 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 11:29
Andraw11122-Apr-10 11:29 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:44
professionalJamil Hallal22-Apr-10 11:44 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 12:12
Andraw11122-Apr-10 12:12 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 12:36
professionalJamil Hallal22-Apr-10 12:36 
AnswerRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:20
professionalJamil Hallal22-Apr-10 11:20 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 12:10
Andraw11122-Apr-10 12:10 
QuestionWeb Service Returns 2nd Half of Data [SOLVED] Pin
#realJSOP22-Apr-10 7:43
mve#realJSOP22-Apr-10 7:43 
QuestionI am lost !! Domain Service, RIA Service, WCF Service and regular Web Service ?? Pin
Nadia Monalisa22-Apr-10 5:37
Nadia Monalisa22-Apr-10 5:37 
Questiongrouping rows in gridview... Pin
pranavcool22-Apr-10 3:30
pranavcool22-Apr-10 3:30 
AnswerRe: grouping rows in gridview... Pin
Avinash_Mane22-Apr-10 4:20
Avinash_Mane22-Apr-10 4:20 
AnswerRe: grouping rows in gridview... Pin
Brij22-Apr-10 4:27
mentorBrij22-Apr-10 4:27 

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.