Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Mobile > Table in ASP.NET Mobile

Reply
Thread Tools

Table in ASP.NET Mobile

 
 
Jovo Mirkovic
Guest
Posts: n/a
 
      09-20-2005
Hi,

is it possible dinamicaly create a table in asp.net for mobile phone. In
WAP is possible, but it must be dinamicly..

I have a code:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

Dim numrows As Integer = 3
Dim numcells As Integer = 2
Dim table1 As New Table
Dim j As Integer

For j = 0 To numrows - 1
Dim r As New TableRow
Dim i As Integer
For i = 0 To numcells - 1
Dim c As New TableCell
c.Controls.Add(New LiteralControl("row " & j.ToString()
& ", cell " & i.ToString()))
r.Cells.Add(c)
Next i
table1.Rows.Add(r)
Next j
table1.GridLines = GridLines.Both
Me.ActiveForm.Controls.Add(table1)
End Sub

and it works fine in Explerer, but on moble phone I have a message:

c:\inetpub\wwwroot\wapPortal\table.aspx.vb(35): 'Rows' is not a member
of 'wapPortal.table'.
c:\inetpub\wwwroot\wapPortal\table.aspx.vb(41): 'GridLines' is not a
member of 'wapPortal.table'.

Thanks,

Jovo

*** Sent via Developersdex http://www.developersdex.com ***
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
iPhone4,iPhone3,Ipad,Apple Mobile,Blackberry Mobile,HTC Mobile,LGMobile,Motorola Mobile,Nokia Mobile,Samsung Mobile chen selina C++ 0 07-13-2010 08:53 AM
cheap LG Mobile Motorola Mobile Nokia Mobile Philips MobileSony-ericsson Mobile yuwenwu004@gmail.com C++ 0 12-09-2007 09:02 PM
cheap LG Mobile Motorola Mobile Nokia Mobile Philips MobileSony-ericsson Mobile yuwenwu004@gmail.com C Programming 0 12-09-2007 09:02 PM
cheap LG Mobile Motorola Mobile Nokia Mobile Philips MobileSony-ericsson Mobile yuwenwu004@gmail.com Java 0 12-09-2007 09:02 PM
cheap LG Mobile Motorola Mobile Nokia Mobile Philips MobileSony-ericsson Mobile yuwenwu004@gmail.com C Programming 0 12-09-2007 09:02 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57