פיתוח תוכנה ובניית אתרים תוכנה לעסקים






פיתוח תוכנה ובניית אתרי אינטרנט
תוכנות לעסקים פיתוח תוכנה ובניית אתרים
התחברות לקוחות
כניסת לקוחות

 
 
כניסת לקוחות

  שכחת את הסיסמה?
תוכנות לדוגמא



 
חברת PC GROUP מתמחה במתן פתרונות מיחשוב מתקדמים לעסקים ולפרטיים. פיתוח תוכנות תפורות ומותאמות לעסקים שונים. בניית אתרי תדמית, אתרי מכירות, אתרים פנימיים לניהול עסק ותחזוקת מערכות מחשבים בעסק. אנו מתמסרים ללקוחותינו ומשתדלים בכל כוחנו לספק את המוצר הטוב ביותר במחירים הוגנים.
יצירת קשר מידע על תוכנה 052-663-5054
PC GROUP
  ניתן ליצור קשר בטלפון בין השעות 19:00 - 8:00
מעבר לשעות הנ"ל ניתן ליצור קשר דרך האתר

  טופס יצירת קשר dot   כתובת מייל dot   קבל הצעת מחיר dot
מחשבמידע על תוכנה

Set focus on control from server side
 
If the built in .Focus() method or Page.SetFocus() method (they're basically the same) don't work (and they often don't), use this utility function instead:

        /// <summary>
/// Used for cases when server side SetFocus() method doesn't work.
/// </summary>
public static void SetFocus(Page page, Control ctrl)
page.ClientScript.RegisterStartupScript(page.GetType(), "setFocusVariable", "var focusFieldId = '" + ctrl.ClientID + "';", true);
page.ClientScript.RegisterStartupScript(page.GetType(), "setFocus", "$(function() { setTimeout(function(){ if (typeof focusFieldId !== 'undefined') {$('#' + focusFieldId).focus(); } }, 0); })", true);
}


Name: Shay
Comment: Use this one - it is better:

/// <summary>
/// Used for scenarios when server side SetFocus() method doesn&#039;t work.
/// </summary>
/// <param name="page">Page containing the control to focus.</param>
/// <param name="ctrl">Control to set focus on.</param>
public static void SetFocus(Page page, Control ctrl)

 page.ClientScript.RegisterStartupScript(page.GetType(), "setFocus", "setTimeout(function(){ $(&#039;#&#039; +" + ctrl.ClientID + ").focus();  }, 100); });", true);
}


Post a comment
Your name:

Your comment:


 

מידע על תוכנה
מידע על תוכנה
בית תוכנה לעסקים ולפרטיים