3
votes
5answers
458 views
Does RAD for asp.net exist?
I've built web sites using classic ASP, ASP.NET web forms and lately ASP.NET with ExtJS. However, I've always felt that I've had to do a lot of the heavy lifting and that there was no real RAD unti …
0
votes
2answers
3k views
How to set DIV width/height with Javascript in Firefox
The following works in IE, but not Firefox:
var el = $get('divToMask');
var box = Sys.UI.DomElement.getBounds(el);
var maskEl = $get('maskDiv');
// Only seems to work in IE
maskEl …
0
votes
2answers
1k views
asp.net ajax calendar extender (in updatepanel) causes wrapping
Here's a simplified version of my page:
<asp:UpdatePanel runat="server" ID="dateUpdatePanel" RenderMode="Inline">
<ContentTemplate>
<asp:Label runat="server" ID= …
0
votes
asp.net ajax calendar extender (in updatepanel) causes wrapping
<style type="text/css">
ajax__calendar
{
display: inline;
}
</style>
seems to fix it with IE6 and FF3
…
