Home
About Me
Categories
C#
(11)
ASP.NET
(34)
JavaScript
(6)
CSS
(1)
XSLT
(1)
Unit Testing
(22)
Architecture
(23)
Ajax
(8)
LINQ to SQL
(2)
ASP.NET MVC
(5)
Life
(18)
Book Reviews
(2)
WPF
(13)
Projects
(2)
Article Published Updating Only Changed GridView Rows
published on 5/27/2008 12:13:37 PM
I have just published an article on www.gridviewguy.com which talks about how to only update the rows which have been changed by the user. Check out the article using the link below:
Updating Only Changed GridView Rows
by aru on 7/21/2008 5:33:48 AM
How can i manually write output to browser for for the same context for the below scenario..
Thanks in Advance..
Protected Sub Button1_Click(ByVal sender As _
Object, ByVal e As System.EventArgs) Handles Button1.Click
If ThreadPool.QueueUserWorkItem( _
New WaitCallback(AddressOf LongTimeTask), TextBox1.Text) _
Then
Label2.Text = "Queued successfully"
Else
Label2.Text = "Failed"
End If
End Sub
Private Sub LongTimeTask(ByVal s As Object)
Dim context As HttpContext = HttpContext.Current
Dim i As Integer
Dim str As String
str = s.ToString
For i = 0 To 10 '000
str = str + "--" + str
Next
''????????
''How can write output to browser.
End Sub
End Class
Name:
Name:
Email:
Comment/Feedback: