当页装满时,我需要显示“<>载荷”指标。 我正在从其他服务器获得页后编码数据,并对名单观点具有约束力。 我没有利用更新小组,我也没有通过分析获得数据。 因此,我怎么能够显示一个“Loading”指标,因为这个网页需要很长的时间才能装上。
提前感谢。
当页装满时,我需要显示“<>载荷”指标。 我正在从其他服务器获得页后编码数据,并对名单观点具有约束力。 我没有利用更新小组,我也没有通过分析获得数据。 因此,我怎么能够显示一个“Loading”指标,因为这个网页需要很长的时间才能装上。
提前感谢。
You create a containing div with a loading gif in the center of it.
When you start your ajax request you show it (with jquery for example) when the ajax request is done you hide it.
It could/should look something like this :
Code to show the loading indicator :
$( #busy-holder ).show();
div:
<div id="busy-holder" style="display: none">
<div id="busy">
</div>
</div>
c :
#busy
{
position: fixed;
left: 50%;
top: 50%;
background: transparent url("loader.gif");
z-index: 1000;
height: 66px;
width: 66px;
}
#busy-holder
{
height:100%;
width:100%;
position:fixed;
left:0;
top:0;
display: none;
filter: alpha(opacity=30);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
opacity:0.3;
-moz-opacity: 0.30;
z-index: 1000;
}
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
I m looking for best practices here. Sorry. I know it s subjective, but there are a lot of smart people here, so there ought to be some "very good" ways of doing this. I have a custom object called ...
I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...
i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...
For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!