Read A File Xml Into Datagrid In Window Mobile?
Mar 29, 2011how to read a file xml into datagrid in window mobile
View 2 Replieshow to read a file xml into datagrid in window mobile
View 2 RepliesI need to open the .swf file thru web page on platform window CE. I got a .swf file which is saving in window CE mobile device on path: My DocumentsflashParallelParking.swf. So when user browse the web page thru the mobile device, I need to open up the .swf file which is save in the particular path on the mobile device.
I try to using Process() to open the file but hits an RunTime Error: "An Application error occurred on server. The current custom error setting for this app prevents the details of the app. error from being viewed remotely."
Public Partial Class HomePage
Inherits System.Web.UI.Page
Protected Sub ImageButton5_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton5.Click
FileOpen("My DocumentsflashParallelParking.swf")
End Sub
Public Sub FileOpen(ByVal FileName As String)
Dim myProcess As New Process()
Try
myProcess.StartInfo.FileName = FileName
myProcess.StartInfo.Verb = "Open"
myProcess.Start()
Catch ex As Exception
Throw ex
End Try
End Sub
End Class
i m creating asp.net Mobile website page to download symbian .sis file to mobile ,but its not geting download properly.its working perfectly on desktop.
View 2 RepliesHow can I read SMS from mobile with my .net application? i have a Nokia 5310 mobile phone. Can you tell me from where i can download Nokia SDK or source code or Nokia API etc?
I want to make a custom application which reads SMS and at the same time sends a response to the sender's mobile number.
How to handle input/output streams to read some data sent from mobile phone app and send it back via ASP page?
The thing is, I've managed to do this with Java servlets, but now I need to do the same thing in ASP.
I have a datagrid I want the popout window limited ti a certine size with on bars or anything. I know there is a javescript that works with webcontrols but what do you do in this situation with this type
[Code]....
i am using a file uploader to upload files. Now when i am using this on a mobile emulator with default browser IE it is uploading only those files whose name is less than 6 character. the files with name more than 6 character is not uploading through mobile emulator or mobile phone (PDA). I need this solution very soon.
View 1 RepliesI have a gridview displaying all employees. Upon selecting an employee, I'd like to open a new page or window that would display all of the information for that employee with the option to edit/delete/update. Once this transaction is complete, return to previous page with gridview of all employees. ((language I'm usings is VB))
<asp:TemplateField Visible="true" headertext="Select">
<ItemTemplate>
<asp:HiddenField ID="hdID01" runat="server" Value='<%# Eval ("PersonnelID") %>' />
</ItemTemplate>
[Code]....
I have a popup window (.aspx page). It will called from a parent .aspx page. All I want to do is read the name of the parent aspx page. I can do that also without issue. Based on the name of the parent window, in the page_load event of the popup window, I want to execute some code.
But the only catch is I am not able to read the parent window name until the page_load event complets the execution.
1. calling popup window from parent window.
Code:
function OpenWindow_HistoricalRuns() {
var windowIncsimHistRuns = window.open('MVal.aspx', 'Market', 'width=350,height=425,scrollbars=0');
windowIncsimHistRuns.moveTo(500, 300);
}
In the body of the popup window the following function tries to read the parent window name:
Code:
function SetDisplay() {
document.getElementById('<%=TextBoxSourcePageName.ClientID%>').value = window.parent.name;
}
In the page_load event of the popup window, I want to see what is value of TextBoxSourcePageName control. I hoped I will get 'MarketVal'. But I never get anything.
Code:
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
try
{
if (TextBoxSourcePageName.Text == "MarketVal")
}
}
}
I need to read data in DataGridView from one page to display using label in Other Page.I think here using QueryString concept. i cant remember the coding for QueryString and How to get Query string in another web page.Please give the sample coding using C# for me.
View 4 RepliesI would like ask you for some ideas how can I write mechanism that will be automatically read files from folder. I don't know how to schedule the write task. I want to check for new file everyday and if the new file is in the folder read it.
View 2 RepliesI am trying to start a new mobile web application project but cannot find the mobile page template originally available on VS 2005, nor can I get the mobile web controls to display in the toolbox even though I have then all selected in the tool-> select toolbox items why? and what can I do?
View 1 RepliesI am developing a web based application for a Motorolla Mc 9090, it is a wireless barcode scanner running windows mobile 5.0.
The idea is to centralize the inventory in one database, by scanning items, serials, bins etc.
I have a set of pages each containg forms, where the user will have to scan an item, and automaticall the scanner has a carriege return (ENTER key) the idea was to have the user simply scan, and the page would automatically click the button posting to server for processing and then the server would reply.
For some reason i cannot get the focus() to work as well as the defaultbutton propperty of the form. There is also 1 more problem, the readOnly textboxes look the same as the non readOnly textboxes, even with the backcolor property changed.(guessing this is just MS)
I have an assignment to develop a mobile application for My company's customers (around 250000). its could be download from our website or we can also provide to our customers those are visiting our branches, on their demand.Requirments:
View 5 RepliesI'm developing a office site but i wnt to include popup in tht but all mobile is not support fully to javascript & jquery . ........
View 1 Repliesi want to develop an asp.net mobile web application whith Ajax features. i dont khnow whether these technologies are supported in mobile developpement?
what stups should i follow to make such project ( IDE + SDK....) . finally what are free windows mobile emulator ( except Microsoft ones)?
How to get current location of mobile using any mobileno.It is possible using Asp.net?
View 1 Replieshow to upload n download file in mobile application
View 3 RepliesNexus One is not currently supported by the Mobile Device Browser File, which leads to the Nexus One being identified as a non mobile device.
I know the user agent, and the capabilities are pretty similar to other Android terminals. With this information, how do I patch the MDBF to have the N1 be recognized as a mobile device?
[URL]
"Due to the organizational restructuring of the team that developed and supported the Mobile Device Browser file, we will no longer have the resources to support and update this CodePlex project. The team will be providing two more releases - one on the 27th July 2010 and the final release on the 24th August 2010. who used our product over the past year and a half. We would also like to thank everyone who contributed to the discussions and raised issues on our data."
Does this project live on someplace else or is there an equivelent project?
I've some files stored in a SQL database. When a user visits a url with the given ID, the BLOB data is retrieved from the database to the webbrower via:
Byte[] myData = b.BlobContent;
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AddHeader("content-disposition", "attachment; filename=" + fileName);
Response.AddHeader("Content-Length", b.SizeInBytes.ToString());
Response.BinaryWrite(myData);
Response.End();
However, the iPhone (Safari) can't download a *.txt and *.doc file. It says: "Safari can't download this file". A pdf can(!) be downloaded and viewed.
On Android none of the files can be downloaded.
Is this because the iPhone and Android just can't handle all files? Or am I doing something wrong in the Response.
I am developing a mobile application that requires text entry in a mobile:textbox component. I want it to only accept numeric and "#*". when I press the "1" key on my mobile phone it should enter a "1", not "a", "b", "c", etc.
View 29 RepliesI have developed one website in asp.net and now I want to open the same website in mobile devices.now i want to develop that for mobile users. I tried with .net mobile controls but it is not full filling my requirements. In the web page if combine the .net mobile controls with Asp.net controls Is it give any problem in the browser (at the time of rendering the controls in browser) in any of the devices like Nokia, iphone, BB. If use html controls in application
View 19 Repliesi m using asp.net fileUploader controle to upload file in mobile application but file is not uploading.
View 1 RepliesI am using both the Mobile Device Browser File and a custom .browser file.
In the custom .browser file, there are several ControlAdapters registered. I would like to specify in my custom .browser file to use different ControlAdapters if the detected device is mobile (provided the Mobile Device Browser File lists it as mobile). How do I do that in my custom .browser file? I do not want to modify the Mobile Device Browser File.I am using something like this, but it is not working
<browser refID="Default">
<controlAdapters>
<adapter controlType="System.Web.UI.WebControls.Menu"[code].....