Search

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

Matching Posts

  • Re: how to perform callback

    Hi Please Refer the following also... http://forums.asp.net/p/1317143/2608591.aspx#2608591
    Posted to Client Side Web Development (Forum) by satish4asp on 11/4/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: how to filter values using javascript

    Hi, Try it with the following way... ParentPage.aspx <form id="form1" runat="server"> <div> <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem Text="RED" Value="R" ></asp:ListItem> <asp:ListItem Text="BLUE" Value="B" ></asp:ListItem> <asp:ListItem Text="GREEN" Value="G" ></asp:ListItem> <asp:ListItem Text="WHITE" Value
    Posted to Client Side Web Development (Forum) by satish4asp on 10/10/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: how to make server-side iframe call javascript onload event?

    Hi, Instead of above ,try with the following.. (in code-behind) this.frmFileUpload.Attributes.Add("onload", "test();"); Regards, Satish.
    Posted to Client Side Web Development (Forum) by satish4asp on 9/29/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: disable the parent page validation in child page in asp.net

    Hi, Try with the following... We can get Parent Page Controls by using window.opener.document.getElementById('Controlid').value (Child may be either .ascx or .aspx) Regards, Satish.
    Posted to Client Side Web Development (Forum) by satish4asp on 9/11/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: window.open in asp

    Try with this... string strJavascript = "" ; strJavascript += "<script>" ; strJavascript += "window.open('http://111.111.111.111:8000/Pages/ValidateUser.aspx',scrollbars=1,resizable=1,toolbar=1,location=1,directories=0)" ; strJavascript += "</script>" ; Response.Write(strJavascript); Regards, Satish.
    Posted to Client Side Web Development (Forum) by satish4asp on 9/11/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: Passing Text of a text box in child form to a label in parent form

    Hi In this scenario I think one Child window is enough and just you need to pass the Label control Id for which it is updating the text. For ex: Parent Form should like this ... < form id ="form1" runat ="server"> < div > < asp : Label ID ="Label1" runat ="server" Text ="Label" ></ asp : Label > &nbsp; < asp : Button ID ="Button1" runat ="server" Text ="Open" OnClientClick ="return
    Posted to Client Side Web Development (Forum) by satish4asp on 9/11/2008
  • Re: Client Callback Problem.

    Hi, I think it is better to post your code here only ,then lot of people will see the issue and they will also try to give some solutions. Simply post your code with Javascript and code behind also.. Regards, Satish.
    Posted to Client Side Web Development (Forum) by satish4asp on 9/11/2008
  • Re: i have dialog.confirm() window in which when i click on "Yes" or "No" i have to get the click sound

    We are unable to understand What is "Dailog.confirm" ? If possible let us explain briefly about this.? As of my understanding about your post is that you need to dispaly some confirm message like " You have some changes in Page..." with YES No buttons.. For this Just refer the following... http://forums.asp.net/p/1057489/2385583.aspx#2385583 Sorry,If I have misundersttod your problem. Regards, Satish.
  • Re: Client Callback Problem.

    Hi, Try with the following..... protected void Page_Load( object sender, EventArgs e) { RegisterCallBackReference(); } private void RegisterCallBackReference() { String callBack = Page.ClientScript.GetCallbackEventReference( this , "arg" , "CallbackOnSucceeded" , "context" , "CallbackOnFailed" , true ); String clientFunction = "function CallServer(arg,context){ " + callBack + "; }" ; Page.ClientScript.RegisterClientScriptBlock( this .GetType
    Posted to Client Side Web Development (Forum) by satish4asp on 9/9/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
  • Re: Update panel

    Hi, Instead of using typeof ( Page ) ,use UpdatePanel Type i.e. UpdatePanel.GetType() Try with the following.... 'UpdatePanel1' is the Id of the UpdatePanel.... Page.ClientScript.RegisterStartupScript(UpdatePanel1.GetType(), "Message" , "<script language='javascript'>alert('Deletails are Deleted Successfully');</script>" ); OR ScriptManager .RegisterStartupScript(UpdatePanel1, UpdatePanel1.GetType(), "Message" , "<script language
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by satish4asp on 9/4/2008
    Filed under: Please don't forget to "Mark This As Answer" if this post Helped you.
Page 1 of 8 (72 items) 1 2 3 4 5 Next > ... Last »