The reason you're not seeing anything when you are developing with
ASP.NET is the way iUI uses CSS.  I don't have it running completely,
but here's a sample of some CSS tweaks I've made:

body
 , body > form
{
    margin: 0;
    font-family: Helvetica;
    background: #FFFFFF;
    color: #000000;
    overflow: hidden;
    -webkit-text-size-adjust: none;
}

body > h1
 , body > form > h1
{
    box-sizing: border-box;
    margin: 0;
    padding: 10px;
    line-height: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
    text-overflow: ellipsis;
    color: #FFFFFF;
    background: url(iPhoneToolbar.png) #6d84a2 repeat-x;
    border-bottom: 1px solid #2d3642;
}

What I've added to the CSS is the line that reads:   , body > form

Like I said, I didn't get it fully working, but that's the issue
you're having with ASP.NET.  I just decided to write my own master
page for my applications.

Good luck!

On Jul 16, 2:26 pm, "Weston Weems" <[EMAIL PROTECTED]> wrote:
> Ok,
> Does anyone actually build web apps in .net here or just php?
> I'd like something like IUI, but cant trouble shoot why its not rendering
> ANY ui in anythign but ie. (I am sure IE is doing the rendering wrong) but I
> just get a blank screen.
>
> Thanks in advance,
> Weston


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to