Datagrid control in ASP.Net mobile application

T

TJ

I want to use the datagrid control in an ASP.Net mobile web application
..

IS it possible to use it in mobile applications???

When I run the following code, I get a blank webpage.
I have added the datagrid inside the <Device Specific> tag


Any suggestions. Thanks


<% @Import Namespace="System.Data" %>
<% @Import Namespace="System.Data.SqlClie­nt" %>
<HEAD>
<...
<meta
content="http://schemas.microsoft.com/M­obile/Page"name="vs_targetSchema">

</HEAD>
<body Xmlns:mobile="http://schemas.microsoft.com/M­obile/WebForm">


<script language="vb" runat="server">
Sub Page_Load(sender as Object, e as EventArgs)
If Not Page.IsPostBack then
BindData() 'Only bind the data on the first page load
End If
End Sub


Sub BindData()
Const SQL_CONNECTION_STRING As String =
"Server=WA;DataBase=SOLLI;user­=sa;password=''"
Dim conConnection As New SqlConnection(SQL_CONNECTION_S­TRING)
Dim strSQL As String
strSQL = "xWEBRSM_SelectInvoices"


Dim cmdReport As New SqlCommand(strSQL, conConnection)
cmdReport.CommandType = CommandType.StoredProcedure


Dim prmSiteID As SqlParameter =
cmdReport.Parameters.Add("@Sit­eID", SqlDbType.Char, 10)
prmSiteID.Value = "S000766"


Dim myAdapter As New SqlDataAdapter(cmdReport)
Dim ds As New DataSet
myAdapter.Fill(ds)


conConnection.Close()
DataGrid1.DataSource=ds
Datagrid1.DataBind()
End Sub


</script>
<mobile:form id="Form1" runat="server">
<mobile:ObjectList id="ObjectList1" runat="server"
LabelStyle-StyleReference="tit­le"
CommandStyle-StyleReference="s­ubcommand"></mobile:ObjectList­>
<mobile:DeviceSpecific id="DeviceSpecific1" runat="server">
<Choice
Xmlns="http://schemas.microsoft.com/m­obile/html32template">
<HeaderTemplate>
<asp:DataGrid id="DataGrid1" runat="server">


</asp:DataGrid>
</HeaderTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:form>
</body>
 
L

Leon

use objectlist instead
"TJ" <[email protected]> ????

I want to use the datagrid control in an ASP.Net mobile web application
..

IS it possible to use it in mobile applications???

When I run the following code, I get a blank webpage.
I have added the datagrid inside the <Device Specific> tag


Any suggestions. Thanks


<% @Import Namespace="System.Data" %>
<% @Import Namespace="System.Data.SqlClie­nt" %>
<HEAD>
<...
<meta
content="http://schemas.microsoft.com/M­obile/Page"name="vs_targetSchema">

</HEAD>
<body Xmlns:mobile="http://schemas.microsoft.com/M­obile/WebForm">


<script language="vb" runat="server">
Sub Page_Load(sender as Object, e as EventArgs)
If Not Page.IsPostBack then
BindData() 'Only bind the data on the first page load
End If
End Sub


Sub BindData()
Const SQL_CONNECTION_STRING As String =
"Server=WA;DataBase=SOLLI;user­=sa;password=''"
Dim conConnection As New SqlConnection(SQL_CONNECTION_S­TRING)
Dim strSQL As String
strSQL = "xWEBRSM_SelectInvoices"


Dim cmdReport As New SqlCommand(strSQL, conConnection)
cmdReport.CommandType = CommandType.StoredProcedure


Dim prmSiteID As SqlParameter =
cmdReport.Parameters.Add("@Sit­eID", SqlDbType.Char, 10)
prmSiteID.Value = "S000766"


Dim myAdapter As New SqlDataAdapter(cmdReport)
Dim ds As New DataSet
myAdapter.Fill(ds)


conConnection.Close()
DataGrid1.DataSource=ds
Datagrid1.DataBind()
End Sub


</script>
<mobile:form id="Form1" runat="server">
<mobile:ObjectList id="ObjectList1" runat="server"
LabelStyle-StyleReference="tit­le"
CommandStyle-StyleReference="s­ubcommand"></mobile:ObjectList­>
<mobile:DeviceSpecific id="DeviceSpecific1" runat="server">
<Choice
Xmlns="http://schemas.microsoft.com/m­obile/html32template">
<HeaderTemplate>
<asp:DataGrid id="DataGrid1" runat="server">


</asp:DataGrid>
</HeaderTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:form>
</body>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top