Click here to Skip to main content
15,885,953 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I need to create a C#.Net web application, which can be run on safari browser(IPad 2)
Is it possible?
If yes, please guide me to create one.
Posted
Updated 5-Sep-11 23:36pm
v2

Yes it's possible, it's just a web application after all - with a few restrictions regarding layout etc

Have a read of this aricle [^]
 
Share this answer
 
Comments
gopalomar 6-Sep-11 6:14am    
Thanks Morley,
For such a positive response...Can you help me to build that web app (the standards to run it on each browser)which can run on IPAD.
Thanks again.
Dylan Morley 6-Sep-11 6:16am    
You'll have to do the work yourself. If you are stuck on a particular problem, then post a question here & I'm sure someone will help.

gopalomar 6-Sep-11 6:48am    
Sure...I am going to try...if i stuck somewhere i'll let you know
Thanks
Hi,

I try this if could help:

C#
protected void Page_PreRender(object sender, EventArgs e)
{
   HtmlMeta metatag = new HtmlMeta();
   metatag.Attributes.Add("http-equiv", "X-UA-Compatible");
   metatag.Attributes.Add("content", "ID=EmulateIE7");
   metatag.Attributes.Add("content", "IE=8");
   metatag.Attributes.Add("content", "IE=edge");
   Page.Header.Controls.AddAt(0, metatag);
}



Regards,

Algem
 
Share this answer
 
Comments
gopalomar 6-Sep-11 6:51am    
Thanks Algem
I am new to web apps. It sounds good to me .I'll try this way and let you know.

Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900