Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
Hello, I've this problem with maskedit and (I think) ssl
in the grid i have
<eo:MaskedEditColumn AllowResize="False" HeaderText="My" MinWidth="80" Width="-1" > <MaskedEdit runat="server" ControlSkinID="None" TextBoxStyle-CssText="background-color: #FFFF99;" ForceSSL="true" > <eo:MaskedEditSegment MaxValue="999999" MinValue="0" SegmentType="Number" Decimals="2"/> </MaskedEdit> <CellStyle CssText="background-color: #whitesmoke; text-align: right; padding-top:6px;" /> </eo:MaskedEditColumn>
the grid is set to fullrowmode=true
and I have i maskedit in a normal html table
<eo:MaskedEdit ID="TB_filtro_importoDa" runat="server" Width="70px" ForceSSL="True" > <eo:MaskedEditSegment MinValue="0" MaxValue="999999" SegmentType="Number" Decimals="2" /> </eo:MaskedEdit>
I any case when i run the application in local in a server with http://.... the maskedit run correctly and the texbox has the text 0.00_____ that is editable
in a server of production where there is https://.... the textbox is 000000.00 and is not editable!
I enter an the production server via terminal server and if i run the site with http:// run correctly
excuse me my little english...
there's problem with ssl and maskedit?
|