Search

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

Matching Posts

  • Re: tracking pages that are not .aspx...

    Hi, Instead of using Application_PreRequestHandlerExecute , you can use simple .aspx page for tracking purpose. you can write all you code in Page_Load event of page. What you have to do, put one hidden Image tag on pages that you want to track. Here is an example, Suppose you have .HTML page and you want to track this page. it is below < html xmlns ="http://www.w3.org/1999/xhtml" > < head > < title > Untitled Page </ title > </ head > < body > this is
    Posted to State Management (Forum) by mustakim on 8/21/2008
  • Re: Cookie vs Session

    Hi session state uses cookies to track user sessions. This is the best choice for the vast majority of applications. Almost all Web browsers support cookies, and those that don’t are typically clients you don’t want to track session data for, such as search engines or other robots. However, you can enable a cookieless session state to have ASP.NET track sessions using a query string in the URL. The session ID is embedded in the URL after the slash that follows the application name and before any
    Posted to State Management (Forum) by mustakim on 8/14/2008
  • Re: How to pass session variables from classic asp site to .Net site

    Hi we can share asp session in aspx page. For that you have to create two intermediate pages. 1) .ASP page that get asp session and store it one hidden variable and Post to .aspx page 2) .ASPX page that get asp session from that hidden variable and create aspx session. here is code. 1) ASP page. < %@LANGUAGE="VBSCRIPT " CODEPAGE="1252"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " http://www.w3.org/TR/html4/loose.dtd "> <html>
    Posted to State Management (Forum) by mustakim on 8/14/2008
  • Re: variable issue

    Hi, If you use value of t in only one page than don't use session. instead of session use ViewState. Remove static from variable declaration. it share value among all request. HTH
    Posted to State Management (Forum) by mustakim on 8/14/2008
  • Re: Validation of viewstate MAC failed.

    Hi, are you load or add some control at runtime? if yes, write EnableViewState="False" to your container. suppose you are adding control in PlaceHolder then write EnableViewState="False" for your PlaceHolder. Best of luck
    Posted to State Management (Forum) by mustakim on 8/14/2008
  • Re: Back Button Problem in Browser

    Here is code for refresh (F5 + ctlr F5) and righ click. For Forward or Back you can use history.go(+1); or window.history.forward(1); return false function disableKey(event) { if (!event) event = window.event; if (!event) return; var keyCode = event.keyCode ? event.keyCode : event.charCode; //window.status = keyCode; //alert(keyCode); // keyCode for F% on Opera is 57349 ?! if (keyCode == 116) { window.status = "F5 key detected! Attempting to disabling default response."; window.setTimeout
    Posted to Client Side Web Development (Forum) by mustakim on 8/14/2008
  • Re: display a content in an aspx page dynamically from constructing the table,td, content for the td.

    Hi With Td height will automaticaly adjust. But if some words more than 3.5 inches that brake your lay out like "aaaaaaaaaaaaaaannnnnnnnnnnnnnnnddddddddddd" For that you have to write this <td > <p style='width:10px; overflow:hidden'> ggggggggggggggggggggggggggggggggg gggggggggg ggggggg gggggggg g gggggg ggggggg</p> </td>
    Posted to Web Forms (Forum) by mustakim on 8/8/2008
  • Re: How to fix some first column to display on GridView when using scrollbar

    hi try this http://www.velocityreviews.com/forums/t301066-freeze-columns-in-gridview-aspnet20urgent.html http://blogs.interfacett.com/dan-wahlins-blog/2007/7/31/freeze-aspnet-gridview-headers-by-creating-client-side-exten.html HTH
    Posted to Web Forms (Forum) by mustakim on 8/8/2008
  • Re: Textbox Increment

    Hi, Do you want to do this from Javascript or CodeBehind? Javascript is better for this pupose.
    Posted to Web Forms (Forum) by mustakim on 8/6/2008
  • Re: how to disable the back button?

    Hi, try this on aspx page. <body onload="window.history.forward(1);" or history.go(1) Hope this helps you.
    Posted to Web Forms (Forum) by mustakim on 8/6/2008
Page 1 of 17 (163 items) 1 2 3 4 5 Next > ... Last »