نحن دائما نسعى لجعل تطبيق أكثر تفاعلا وسهلة الاستعمال. عندما يقوم المستخدم على الإطلاق أي عملية طويلة ثقيلة أو (تحميل / تنزيل الملفات الكبيرة أو تركيب (أو تتوقع معرفة التقدم المحرز في العملية على فترات منتظمة.
The user should be made aware of status whether it may be success or failure at each step. We cannot keep user waiting. The user should be informed of percentage of task completed. This article discuss about the custom user control to create a smooth, incrementing ProgressBar control. It’s typical user control which you can include in any of asp.net web application. This user control is a light weight which is built using a HTML table.
<%@ Control Language=”VB” AutoEventWireup=”false” CodeFile=”ProgressBar.ascx.vb” Inherits=”ProgressBar” %>
<asp:Table ID=”tblProgressBar” runat=”server”
BorderWidth=”1px”
CellPadding=”1″
CellSpacing=”1″
Height=”15px”
Width=”200px”>
</asp:Table>
<uc1:Progressbar ID=”Progressbar1″ runat=”server” BGColor=”Gray” Blocks=”20″ BorderColor=”Black”
BorderSize=”1″ Cellpadding=”1″ CellSpacing=”1″ FillColor=”Green” Height=”20″ Value=”10″
Width=”150″ />
ProgressBar User control properties
More »
Share on Facebook
1: Always Close Your Tags
Back in the day, it wasn’t uncommon to see things like this:
- <li>Some text here.
- <li>Some new text here.
- <li>You get the idea.
More »
Share on Facebook
على سبيل المتابعة ل"
للمبتدئين html افضل 30 تطبيق" ، سوف نقوم بمراجعة جافا سكريبت! بمجرد أن تستعرض الموضوع السابق ، انتقل الى هنا لترى النصاح والخطوات!
1. Use === Instead of ==
JavaScript utilizes two different kinds of equality operators: === | !== and == | != It is considered best practice to always use the former set when comparing.
“If two operands are of the same type and value, then === produces true and !== produces false.” – JavaScript: The Good Parts
However, when working with == and !=, you’ll run into issues when working with different types. In these cases, they’ll try to coerce the values, unsuccessfully. More »
Share on Facebook
The Overflow: Hidden Trick
Have you ever noticed that when you float all of the children elements within a div, the parent takes up zero space? For example, in your code editor, adding the following within the body tag.
Share on Facebook
اسم التقنية العلامة المائية watermarking
الحل البسيط هو اضافة
bgproperties=”fixed”
الى الbody
<body bgproperties="fixed">
ملحوظة: هذه الشفرة تعمل على متصفحات Internet Explorer فقط
More »
Share on Facebook