I need a set of basic Ajax controls that work well with ASP.NET. I need the basic controls, like lists, trees, masked edits, accordians etc. However, my twist is that many of the users of my web app will be using mobile browsers on Android and iPhone, so the controls need to work well in small screen touch oriented formats. (For example, the ASP.Net Ajax library resize control just doesn't work well in this environment.)
Does anyone have any experience and recommendations in this area?
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:
I would like to take our current mobile website and redesign it for iPhone use. All of the code on our website is currently run server-side and is split up in multiple pages, but I would like to get all the client-side features like transition animations and iPhone-like buttons that jQTouch offers. Where should I start?
I have an asp.net C# website. Because of iPhone doesn't support flash i want to change a theme of my site on page load or init if user using it. Could any one show me (code in c#) how to determine that user is browsing my website using iPhone or iPad, not a blackberry, or android etc.
I 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?
i 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)?
I am making a class library. I want to use some of ajax control but don't know how to use ajax source code. suppose i want to use file upload control in my class library. How should i accomplish this task. I mean to say how should i refer ajax file upload sript file(.js) in my class library.
I am in the middle of rebuilding a site an incorperating Ajax here and there.I was testing out the animations since I was interested in using them all over our new site.I was using the sample scripts found here:http://www.asp.net/ajax/videos/basic-aspnet-authentication-in-an-ajax-enabled-applicationplaced it on myserver and it works flawlessly across IE-Safari-Chrome-Mozilla. When I tried Ipad/Iphone the page tries to load, and then refreshes.I went to the samples page and found that everything there works EXCEPT the animations sample.http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Animation/Animation.aspxIphone is Iphone 4 with latest updates, Ipad is original with latest updates.
I have a custom DDL that lives in my Server control library. Currently I add this control to a table by strongly typing the name of the control, the customary way.
Control_Library.Report_NumberDDL newDDL = new Control_Library.Report_NumberDDL();
What I want to be able to do is dynamically create that control by pulling the control name from a table. So I would have the name of the control in my code, in this case "Report_NumberDDL", and I would like to then create the control without having to strongly type it.
Something like this, though I know this doesn't work:
string controlName = "Report_NumberDDL";
Control_Library."controlName" controlNum1 = new Control_Library."controlName"();
Edit:I tried to do this:
Type type = Type.GetType("Control_Library.Report_NumberDDL"); object control = Activator.CreateInstance(type);
But on the CreateInstance(type) I get a null value exception. So the Type isn't getting created correctly.
I 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:
I have created an asp.net application which contains a user control. Within the application this control works fine. I have then moved the control into a separate "control library" project. When I try to load the control from the control library I find that the asp elements defined in the ascx for the control are not instantiated - i.e. I get a null reference exception in the Page_Load event handler. The only changes that I have made to the original application are to reference my control library and to change the <%@ Register statement in the loading page to reference the control library dll:
[Code]....
Do I need to do something else to get the user control to initialize itself correctly?
I am plannning to use the html editor control of asp.net ajax library in my website. what I need to do to deploy the asp.net ajax library on the server that is hosting my website ?
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.
I 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
I just browsed and tried to find a good example changing a web user control(ascx) to a web control library. I used some javascript, Css and images for the control and i need this fiels to be build to my web control library. The answer I get it is not sufficient.
i am going to start first mobile application.Already Vs 2008 installed, but no Mobile SDK.So please tell which SDK i have to install to start up my first mobile application?Or some VS 2008 plugin requires for Mobile application
I am looking at the twitter api page http://apiwiki.twitter.com/ and I noticed that they have already built libraries that are wrappers against the twitter api. So I am thinking this is the best way to go but I am unsure which C# library I should use.
What I am trying to do is make some simple service or cmd line application that will help me automate retweeting.
So I am looking for a library that will allow me to get posts from other twitter accounts and then retweet them from another account.
I am not sure if the library can do this or not. Otherwise I was thinking of getting the RSS feed from the twiter account I want to get the twitters from parse out the new ones and use a library to retweet them on my own account.
I have not used twitter much so I am hopping someone can shed some light on this.
To start with a concrete example, I'm just moving the logon link control from the default MVC2 app to a library called WebUtilities. In the web app, I've deleted: view/account/LogOnUserControl.ascx and instead implemented the following class in the WebUtilities project:
public class Ctrl_LogOnLink :[code]...
Then in the site.Master where it is referenced, I've replaced
<% Html.PartialRender("LogOnUserControl") %>
with
<%@ Import Namespace="WebUtilities" %>[code]...
This sort of works, except the content of the control is not rendered (if debugging, RenderView is not called). If in the control constructor, I use "Controls.Add(new Literal...", that will load some control content, however the Control's base is not initialized, so if I reference the Request.IsAuthenticated in the constructor, the control throws an exception. how to implement the control in a library? Also, if the control is based on the ViewUserControl<Model>, how do I set the Model?