Click here to Skip to main content
15,925,723 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHtml in Class Files....Does it make sense.... Pin
Amit Kumar G14-Sep-06 15:30
Amit Kumar G14-Sep-06 15:30 
AnswerRe: Html in Class Files....Does it make sense.... Pin
Guffa14-Sep-06 19:02
Guffa14-Sep-06 19:02 
AnswerRe: Html in Class Files....Does it make sense.... Pin
Avanika Gupta14-Sep-06 19:43
Avanika Gupta14-Sep-06 19:43 
QuestionGetting ConnectionStrings from Web.xml file - XML being parsed each time?? Pin
Dominic Pettifer14-Sep-06 14:13
Dominic Pettifer14-Sep-06 14:13 
AnswerRe: Getting ConnectionStrings from Web.xml file - XML being parsed each time?? Pin
kiran kumar[Intelligroup]14-Sep-06 19:26
kiran kumar[Intelligroup]14-Sep-06 19:26 
GeneralRe: Getting ConnectionStrings from Web.xml file - XML being parsed each time?? Pin
Dominic Pettifer15-Sep-06 14:59
Dominic Pettifer15-Sep-06 14:59 
QuestionAnthem.Net - Multiple Requests at the same time... [modified] Pin
Drofnas14-Sep-06 12:37
Drofnas14-Sep-06 12:37 
AnswerRe: Anthem.Net - Multiple Requests at the same time... Pin
Drofnas18-Sep-06 6:55
Drofnas18-Sep-06 6:55 
For anyone that is interested, I found the solution to my problem.

Instead of setting the "AutoUpdateAfterCallBack" property in the HTML code, you would instead set it after you've updated the value for the text field, for example:


Partial Class Default
    Inherits System.Web.UI.Page

    Protected Sub btn1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn1.Click
        txt1.Text = "Hello World"
        txt1.UpdateAfterCallBack = True
        Threading.Thread.Sleep(1000)
    End Sub

    Protected Sub btn2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn2.Click
        txt2.Text = "Hello World"
        txt2.UpdateAfterCallBack = True
        Threading.Thread.Sleep(1000)
    End Sub
End Class



That way the auto updating functionality of Anthem.Net will only update the specific field(s) that you set to update after the callback has occured.
QuestionCrystal Report Error Pin
myousufq14-Sep-06 12:06
myousufq14-Sep-06 12:06 
QuestionWeb Service Basic Error Pin
Amit Kumar G14-Sep-06 9:23
Amit Kumar G14-Sep-06 9:23 
AnswerRe: Web Service Basic Error Pin
Sebastien Lachance14-Sep-06 9:40
Sebastien Lachance14-Sep-06 9:40 
AnswerRe: Web Service Basic Error Pin
Are Jay14-Sep-06 10:30
Are Jay14-Sep-06 10:30 
GeneralRe: Web Service Basic Error Pin
John Gathogo14-Sep-06 19:22
John Gathogo14-Sep-06 19:22 
QuestionNeed help with Data Caching in ASP.Net 2.0 Pin
forfun1214-Sep-06 8:31
forfun1214-Sep-06 8:31 
AnswerRe: Need help with Data Caching in ASP.Net 2.0 Pin
Not Active14-Sep-06 9:35
mentorNot Active14-Sep-06 9:35 
QuestionWeb Service Pin
Amit Kumar G14-Sep-06 7:15
Amit Kumar G14-Sep-06 7:15 
AnswerRe: Web Service Pin
Sebastien Lachance14-Sep-06 9:19
Sebastien Lachance14-Sep-06 9:19 
AnswerRe: Web Service Pin
postmaster@programmingknowledge.com14-Sep-06 11:00
postmaster@programmingknowledge.com14-Sep-06 11:00 
Questionneed help with the database part of asp >.< Pin
neodeaths14-Sep-06 6:25
neodeaths14-Sep-06 6:25 
AnswerRe: need help with the database part of asp >.< Pin
Amit Kumar G14-Sep-06 7:11
Amit Kumar G14-Sep-06 7:11 
QuestionToolbar web part for share point portal Pin
Suj_7814-Sep-06 6:13
Suj_7814-Sep-06 6:13 
Questionis asp.net sucks ? Pin
SharpSmith14-Sep-06 5:58
SharpSmith14-Sep-06 5:58 
AnswerRe: is asp.net sucks ? Pin
Guffa14-Sep-06 8:23
Guffa14-Sep-06 8:23 
GeneralRe: is asp.net sucks ? Pin
SharpSmith14-Sep-06 9:53
SharpSmith14-Sep-06 9:53 
GeneralRe: is asp.net sucks ? Pin
Dominic Pettifer14-Sep-06 14:05
Dominic Pettifer14-Sep-06 14:05 

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.