Search

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

Matching Posts

  • ViewStae compression weired error

    hello experts, I have a weired problem regarding viewstate comression. I have implemented override methods LoadPageStateFromPersistenceMedium() and SavePageStateToPersistenceMedium(object viewState). Everything works fine. But the problem is when I hit Escape button twice in any textbox, the viewstate gets cleared and following error occures whle decompressing the viewstate in LoadPageStateFromPersistenceMedium. --------------------------- Error --------------------------- A Runtime Error has occurred
    Posted to State Management (Forum) by harshalbhakta on 7/2/2009
    Filed under: VIewstate compression
  • Re: Data passing from child window to parent window (Firefox issue)

    thanks, the issue was resolved. forgot to thank everybody for you help.. thanks you all
  • Re: Page_ClientValidate()

    All fields are having their own server side validations (required field/regular exporessio etc..) My application need is to trim all the textboxes on blur event, and I am doing that correctly. The only problem is that I want to validate a single textbox at a time against its server side validator from javascript!
    Posted to Web Forms (Forum) by harshalbhakta on 7/23/2008
  • Re: change the image of an imagebutton when you hover it

    try following code: <asp:ImageButton id="ImageButton1" onclick="ImageButton1_Click" ImageUrl="button1.jpg" onclientclick="ToggleImage()"></ asp:ImageButton> <script language="javascript"> function ToggleImage() { var img = window.event.srcElement; var type = window.event.type; if(type=="onmouseover") img.src="image11.jpg" else if(type=="onmouseout") img.src="image22.jpg" } </script> hope
  • Page_ClientValidate()

    Hi Experts, I have 4 textboxs and I have written a JS function TrimAll() for all 4 textboxes' "onblur" event. In this function I am trimming the value of the textbox and replacing the original value of the textbox with the trimmed value. Aftre replacing with trimmed value I am calling Page_ClientValidate() function so that I get a rid of regularexpression validator's errormessage. I know its confusing.. let me explain.. In the email textbox if I write some spaces and then email
    Posted to Web Forms (Forum) by harshalbhakta on 7/23/2008
  • How to Run .EXE without installing the framework.

    Hi guys, I dont want my clients to install framework 2.0, but I need them to successfully run the executable created in vs2005 windows application. Are there any files that we need to copy at some specific location and then we can smoothly run the .exe file? any idea? thanks in advanced. - harshal
    Posted to Free For All (Forum) by harshalbhakta on 3/15/2007
  • Re: Data passing from child window to parent window (Firefox issue)

    Hi Guys Thanks for your immediate help. still have some problem with that issue. Haissam your 1 of your code works i.e. self.opener.document.getElementById('hAction').value = ''; but self.opener.submit(); is not working guys please help me asap, to submit the parent form (while I am on child window in FF) just fyi, super ghost, your things not working even on IE, Pushp_aspnet, your code might work on both (not tried, as self.opener.document.getElementById('hAction').value = ''; this worked for me
  • Data passing from child window to parent window (Firefox issue)

    hi guys, I am opening a child window by using window.open(url); here while I am in child window, I need to assign some text to the hidden textbox on parent window and also need to submit the paren window. (I may not close the child window) For doing this, I am using the following code window.opener.Form1.hAction.value = "some_text"; //Form1 is the Parent form's id and hAction is the hidden input field on parent form window.opener.Form1.submit(); Now, the problem is, this all works very fine on IE6
  • Re: why my master.page labels did not update?

    hi lostlander, u r right, but as in his scenario this should work in master page's load event. nisar, u make sure that u didnt write code in the if(! IsPostBack) condition, if so then it won't get execute after clicking any button on content page. if all alright then try updating master page label from content pages. for that use following code: Label lblSample = ( Label )Master.FindControl( "lblTest" ); lblSample.Text = "Label Text" ; this will surely work thanks, harshal
  • Re: how to avoid master page postback?

    hi jody, i tried that all mentioned but it didn't help.... guys plz help, this is the most common issue, i guess...and important as well. thanks, harshal
Page 1 of 2 (16 items) 1 2 Next >