Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~255 People Reached
Favorite Forums
Member Avatar for harius

Hi My webpage contains a Datalist attached to AccessDataSource. This DataList displays records in Access database table.In addition it also contains a text box and a button. A user enters text in TextBox and uses Add Button or Delete Button. The TextBox text should be inserted in a table or …

0
30
Member Avatar for harius

[code] While dr.Read() //read from access database Dim tb1 As New TextBox() tb1.ID = "tb" + i.ToString() WallDiv.InnerHtml += dr(0) WallDiv.InnerHtml += "<br>" WallDiv.InnerHtml += dr(1) WallDiv.InnerHtml += "<br>" WallDiv.InnerHtml += dr(2) 'Create TextBox under each Comment WallDiv.Controls.Add(tb1) i = i + 1 End While [/code] Problem is that :-Loop …

Member Avatar for hericles
0
69
Member Avatar for harius

Hi.Im working on an ASP.NET website.In this application there are some local functions and a call to an external C# exe.Every thing works fine if I use a msgbox control before this form redirects to the output page.If I dont use this msgbox before redirecting, the output is different than …

Member Avatar for harius
0
156