Click here to Skip to main content
15,892,737 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionXML Problem Pin
Nanda_MR30-Jan-09 20:40
Nanda_MR30-Jan-09 20:40 
AnswerRe: XML Problem Pin
Christian Graus30-Jan-09 20:58
protectorChristian Graus30-Jan-09 20:58 
GeneralRe: XML Problem Pin
Nanda_MR30-Jan-09 23:05
Nanda_MR30-Jan-09 23:05 
Question[Message Deleted] Pin
siva45530-Jan-09 20:34
siva45530-Jan-09 20:34 
AnswerRe: Registry access in web application Pin
Christian Graus30-Jan-09 20:35
protectorChristian Graus30-Jan-09 20:35 
QuestionGridView ASP.NET 2.0 Pin
MuhammadAtif30-Jan-09 20:15
MuhammadAtif30-Jan-09 20:15 
AnswerRe: GridView ASP.NET 2.0 Pin
Christian Graus30-Jan-09 20:36
protectorChristian Graus30-Jan-09 20:36 
GeneralRe: GridView ASP.NET 2.0 Pin
MuhammadAtif30-Jan-09 21:21
MuhammadAtif30-Jan-09 21:21 
i have to check it on a sample page with 2 text box plus 1 gridview. Code is as :

Partial Class Default2
Inherits System.Web.UI.Page
Private dsSelect As New DataSet

Private Sub CreateGridTable()
dsSelect.Tables.Add("Region")
dsSelect.Tables(0).Columns.Add("RegionID")
dsSelect.Tables(0).Columns.Add("RegionDescription")
End Sub
Protected Sub TextBox2_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
Dim vCount As New Integer

If dsSelect.Tables.Count = 0 Then
CreateGridTable()
Me.GridView1.DataSource = dsSelect.Tables(0)
End If

vCount = dsSelect.Tables(0).Rows.Count

dsSelect.Tables(0).Rows.Add()

dsSelect.Tables(0).Rows(vCount).Item("RegionID") = Me.TextBox1.Text
dsSelect.Tables(0).Rows(vCount).Item("RegionDescription") = Me.TextBox2.Text


Me.GridView1.DataSource = dsSelect.Tables(0)

Me.GridView1.DataBind()

End Sub

End Class
GeneralRe: GridView ASP.NET 2.0 Pin
Christian Graus30-Jan-09 23:06
protectorChristian Graus30-Jan-09 23:06 
GeneralRe: GridView ASP.NET 2.0 Pin
MuhammadAtif31-Jan-09 1:06
MuhammadAtif31-Jan-09 1:06 
GeneralRe: GridView ASP.NET 2.0 Pin
MuhammadAtif31-Jan-09 18:10
MuhammadAtif31-Jan-09 18:10 
QuestionChange the asp.net worker process identity Pin
siva45530-Jan-09 19:40
siva45530-Jan-09 19:40 
AnswerRe: Change the asp.net worker process identity Pin
Christian Graus30-Jan-09 20:15
protectorChristian Graus30-Jan-09 20:15 
GeneralRe: Change the asp.net worker process identity Pin
siva45530-Jan-09 20:22
siva45530-Jan-09 20:22 
GeneralRe: Change the asp.net worker process identity Pin
Christian Graus30-Jan-09 20:34
protectorChristian Graus30-Jan-09 20:34 
GeneralRe: Change the asp.net worker process identity [modified] Pin
siva45530-Jan-09 20:41
siva45530-Jan-09 20:41 
QuestionIs it possible to popup reminder on particular time in asp.net Pin
Krishnraj30-Jan-09 18:54
Krishnraj30-Jan-09 18:54 
AnswerRe: Is it possible to popup reminder on particular time in asp.net Pin
Christian Graus30-Jan-09 18:57
protectorChristian Graus30-Jan-09 18:57 
GeneralRe: Is it possible to popup reminder on particular time in asp.net Pin
Krishnraj30-Jan-09 21:21
Krishnraj30-Jan-09 21:21 
Questionforums Pin
ahawari0930-Jan-09 18:01
ahawari0930-Jan-09 18:01 
AnswerRe: forums Pin
Christian Graus30-Jan-09 18:34
protectorChristian Graus30-Jan-09 18:34 
QuestionRegional Language Issue While Uploading Excel Pin
jchandramouli30-Jan-09 17:57
jchandramouli30-Jan-09 17:57 
QuestionCan i use the same DataGridView for displaying the results of 2 different queries at different times? Pin
Subin Alex30-Jan-09 16:48
Subin Alex30-Jan-09 16:48 
AnswerRe: Can i use the same DataGridView for displaying the results of 2 different queries at different times? Pin
vaghelabhavesh30-Jan-09 16:54
vaghelabhavesh30-Jan-09 16:54 
GeneralRe: Can i use the same DataGridView for displaying the results of 2 different queries at different times? Pin
Subin Alex30-Jan-09 18:42
Subin Alex30-Jan-09 18:42 

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.