Search

You searched for the word(s): userid:852786

Matching Posts

  • calling javascript method on before page load

    Hi I am getting screen resolution through javascript by calling the javascript method on page load. and inside javascript i am assigning resolution value in the hidden control. protected void Page_Load(object sender, EventArgs e) {string strMethodName = "GetScreenHeightAndWidth();"; ScriptManager.RegisterStartupScript(Page, Page.GetType(), Guid.NewGuid().ToString(), strMethodName, true); } function GetScreenHeightAndWidth() { debugger; var width = screen.width; var height = screen.height;
    Posted to Client Side Web Development (Forum) by ashok.k on 11/13/2009
    Filed under: on before page load, calling, javascript method
  • Re: calling javascript method on before page load

    Hi karthicks Thanks for your reply. I tried this already but not helpful.
    Posted to Client Side Web Development (Forum) by ashok.k on 11/13/2009
  • Response.Redirect does not end execution

    Hi I am working on an ASP.NET 3.5 web application. I have written the following code in Master page to redirect the page to Login if the session is null. If the session expires, execution goes to else block but does not end the execution. If the post back is on a button click on a page, it goes to Master page and checks the session. But continues the Button click code even if the session is expired. if (Session[ "UserName" ] != null ) String .Concat( "Welcome : " , userName);
    Posted to State Management (Forum) by ashok.k on 11/13/2009
    Filed under: Response redirect
  • javascript calender not displaying correctly in firefox

    Hi, I'm using javascript calender control in my website. when i open my site in IE and launch the JS calender its shows fine. but in Firefox its not displaying correctly. in my script i'm finding top and left possition of the control where we need to display the calender as follows. do { scwEle=scwEle.offsetParent; offsetTop +=parseInt(scwEle.offsetTop, 10); offsetLeft+=parseInt(scwEle.offsetLeft,10);} while (scwEle.tagName != 'BODY' && scwEle.tagName != 'HTML'); when
    Posted to Web Forms (Forum) by ashok.k on 11/6/2009
  • javascript calender not displaying correctly in firefox

    Hi, I'm using javascript calender control in my website. when i open my site in IE and launch the JS calender its shows fine. but in Firefox its not displaying correctly. in my script i'm finding top and left possition of the control where we need to display the calender as follows. do { scwEle=scwEle.offsetParent; offsetTop +=parseInt(scwEle.offsetTop, 10); offsetLeft+=parseInt(scwEle.offsetLeft,10);} while (scwEle.tagName != 'BODY' && scwEle.tagName != 'HTML'); when
    Posted to Component Discussions (Forum) by ashok.k on 11/6/2009
    Filed under: jscript calender in firefox
  • Page renders fast in Firefox

    Hi, We are developing website using asp.net. after deploy the site, the page rendering is seems to be slow in IE compare than Firefox. We need to make the rendering speed is same in all the browser. please suggest me how can we make it. Regards, Ashok
    Posted to Client Side Web Development (Forum) by ashok.k on 11/5/2009
  • Reduce Page size in Asp.net

    Hi, we are developing website using asp.net. we are using master pages, styles,scripts and images in our site. at runtime if we save the page it shows arround 1.4 MB. we need to reduce the page size as well need to improve the rendering time.. can any one suggest how to reduce page size.. Regards, Ashok
    Posted to Architecture (Forum) by ashok.k on 11/3/2009
    Filed under: Reduce Page size in Asp.net
  • Re: Reduce Page size in Asp.net

    Hi we are disabled viewstate in all the grid controls we are using in the page.. Regards Ashok
    Posted to Architecture (Forum) by ashok.k on 11/3/2009
  • Re: Reduce Page size in Asp.net

    Hi Actually we tried to rename the image folder and launch the site without any images.. but it got reduced only 200 kb of page size. so image size is not taking much size...
    Posted to Architecture (Forum) by ashok.k on 11/3/2009
  • Applying CSS to GridView during Item bound

    Hi I am working on a ASP.NET 3.5 application. I am applying the CSS style to GridView control in the Item bound event of the Repeater control. Following lines of code will be executed 10 to 20 times during the Item bound event of the Repeater control. grdSummary.DataSource = dt; tblGroupHeader.CssClass = Class.Text; grdSummary.CssClass = Class.Text; grdSummary.HeaderStyle.CssClass = sumTrTitle; grdSummary.ItemStyle.CssClass = eRowClass; grdSummary.AlternatingItemStyle.CssClass = oRowClass; grdSummary
    Posted to Data Presentation Controls (Forum) by ashok.k on 10/20/2009
    Filed under: CSS to GridView
Page 1 of 12 (116 items) 1 2 3 4 5 Next > ... Last ยป