Forum: ASP.NET Apr 16th, 2008 |
| Replies: 2 Views: 602 First i would try using standard DataTables as it is possible that the server has not got the prerequisites installed for H2C2DataLayer.h2c2DataSet.topicsDataTable
Try
Dim SQLTable as new... |
Forum: ASP.NET Apr 14th, 2008 |
| Replies: 1 Views: 640 I would use SQL Select Statments to select the correct data based on a (WHERE) criteria
See "VB.NET" > "How to use SQL" on or <snipped>DaniWeb Code Snippet 696 |
Forum: ASP.NET Mar 6th, 2008 |
| Replies: 3 Views: 1,687 You could write the whole site in XML files
Read from XML Dim dt As New DataTable
dt.ReadXmlSchema("Filename_Schema.xml")
dt.ReadXml("FileName.xml")
For Each... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 5 Views: 1,660 Try just using GUPTA-4E607DBAB as your server name or go by IP as the \administrator is a user and not part of the SQL Server name |
Forum: ASP.NET Sep 23rd, 2007 |
| Replies: 3 Views: 3,491 for Dataview use If dataview.count = 0 then
button1.visible = False
else
button1.visible = True
End Ifor
for datatables useIf datatable.rows.count = 0 then
button1.visible = False
else... |