Click here to Skip to main content
15,893,381 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Problem in assigning values to ItemArray... Pin
Arun.Immanuel20-Apr-07 0:46
Arun.Immanuel20-Apr-07 0:46 
NewsEncrypting Connection Strings Pin
Code_Doctor16-Apr-07 15:59
Code_Doctor16-Apr-07 15:59 
Questiongridview Pin
hahii16-Apr-07 13:49
hahii16-Apr-07 13:49 
AnswerRe: gridview Pin
kubben16-Apr-07 14:46
kubben16-Apr-07 14:46 
QuestionTry this Pin
Hasan Ali16-Apr-07 12:54
Hasan Ali16-Apr-07 12:54 
AnswerRe: Try this Pin
Jonathan [Darka]17-Apr-07 21:56
professionalJonathan [Darka]17-Apr-07 21:56 
QuestionEnableViewProperty Pin
hahii16-Apr-07 10:14
hahii16-Apr-07 10:14 
AnswerRe: EnableViewProperty Pin
kubben16-Apr-07 12:54
kubben16-Apr-07 12:54 
If you are setting the textbox text in the form load event you need to make sure you have a check on the IsPostBack property. The page load event happens before your edit event, so the data gets set back to its original value in the page load. So you need some code like this:
If (!IsPostBack)
{
   textBox.Text = "somevalue";
}
or
If Not IsPostBack Then
   textBox.Text = "somevalue
End If


Hope that helps.
Ben
Questionurgent please help Pin
hahii16-Apr-07 8:59
hahii16-Apr-07 8:59 
AnswerRe: urgent please help Pin
Guffa16-Apr-07 9:35
Guffa16-Apr-07 9:35 
QuestionWorking with a Gridview Edit Template at runtime. Pin
dspyank16-Apr-07 8:13
dspyank16-Apr-07 8:13 
AnswerRe: Working with a Gridview Edit Template at runtime. Pin
kubben16-Apr-07 12:56
kubben16-Apr-07 12:56 
QuestionAn AI chatbot in ASP.Net? A few snags I've run into. Pin
Caden16-Apr-07 8:05
Caden16-Apr-07 8:05 
Questionhelp me really soon guys Pin
dhananjaysonar16-Apr-07 7:18
dhananjaysonar16-Apr-07 7:18 
AnswerRe: help me really soon guys Pin
kubben16-Apr-07 13:00
kubben16-Apr-07 13:00 
QuestionHow to get previous page URL Pin
attalurisubbu16-Apr-07 5:18
attalurisubbu16-Apr-07 5:18 
AnswerRe: How to get previous page URL Pin
Guffa16-Apr-07 6:45
Guffa16-Apr-07 6:45 
QuestionUpdating a table in Dataview Pin
twhitma116-Apr-07 3:53
twhitma116-Apr-07 3:53 
Questiondate_fun_dal_mohamed_arif Pin
Hasan Ali16-Apr-07 2:59
Hasan Ali16-Apr-07 2:59 
AnswerRe: date_fun_dal_mohamed_arif Pin
_mubashir16-Apr-07 3:28
_mubashir16-Apr-07 3:28 
AnswerRe: date_fun_dal_mohamed_arif Pin
Jonathan [Darka]17-Apr-07 21:56
professionalJonathan [Darka]17-Apr-07 21:56 
Questiongridview Pin
Oga M16-Apr-07 2:43
Oga M16-Apr-07 2:43 
QuestionExcel to database table Pin
rmedo16-Apr-07 2:30
rmedo16-Apr-07 2:30 
AnswerRe: Excel to database table Pin
andyharman16-Apr-07 3:03
professionalandyharman16-Apr-07 3:03 
AnswerRe: Excel to database table Pin
Leyu16-Apr-07 4:22
Leyu16-Apr-07 4:22 

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.