Search

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

Matching Posts

  • Re: Event handling and delegates

    Wow. This is what I was sort of looking for. I am having a hard time visualizing delegates. Do you know of any goo, detailed article explaining the delegates and how to use them, especially in a User Interface? thanks
    Posted to Web Forms (Forum) by mark836 on 11/18/2009
  • Re: Event handling and delegates

    Thanks for the reply. I know delegate is probaly not needed and it will make the code more complicayed. I just wanted to se how it is done so I can get a better grasp on delegates. So, For all user controls that are on az web page trhat has a Detailsview event ItemInserted, I want to pass arguments to the Page's method so I can display the optimistic concurrency error. A delegate example? Than ks
    Posted to Web Forms (Forum) by mark836 on 11/16/2009
  • Re: Event handling and delegates

    Yes, this is what I need to do. But, anyway to use a delegate here to capture this in the parent page? Or for other DetailsView on the page? Thanks
    Posted to Web Forms (Forum) by mark836 on 11/13/2009
  • Event handling and delegates

    Hi I am new to the "delegate" concept. I found a place where I think (I hope) a delegate would come into good use. In my DetailsView, The user can update. Because I have Optimisitc Concurrency turned on, I want captured this issue. How can I do this with a delegate? Example? Thanks
    Posted to Web Forms (Forum) by mark836 on 11/12/2009
  • Re: How to set the constructor parameters in objectdatasource

    Thanks. this looks like the solution. I need to search this idea further. Cheers
    Posted to Data Presentation Controls (Forum) by mark836 on 11/6/2009
  • Re: Automatically call a Submit button on client side?

    Again, your opinion is not what I am looking for. Please stop replying to a post if you can't give a valid answer. If you dokn't know the answer, please, please do not reply. Thank you
    Posted to Client Side Web Development (Forum) by mark836 on 11/4/2009
  • call a button clicked method on the client?

    Hi. I have page that is called "Search". This "Search" page is used by multiple pages; I have the "Request.UrlReferrer.PathAndQuery" to determine what page called it so that I can go back to the calling page and pass results. Sometimes I have a response.redirect in a page to go to the "Search" Page. Unfortunately, the "Request.UrlReferrer.PathAndQuery" returns the pages directory other than the page that has the Response.redirect. Rather, it returns
    Posted to Client Side Web Development (Forum) by mark836 on 11/4/2009
  • Re: call a button clicked method on the client?

    I had to repost this due to interference. Here is the solution. I hope it helps someone. System.Web.UI.HtmlControls.HtmlGenericControl pBody = new System.Web.UI.HtmlControls.HtmlGenericControl(); pBody.TagName = "body"; pBody.Attributes.Add("onload", "document.getElementById('" + BtnSearch.ClientID + "').click();"); Page.Master.Controls.Add(pBody);
    Posted to Client Side Web Development (Forum) by mark836 on 11/4/2009
  • Re: Automatically call a Submit button on client side?

    Thanks. Server.transfer is the first thing I have tried. However, I did find a portion of the solution and modified the code to fit my needs. (I posted this on another question/answer post in case someone needed it) This works pretty well. This code may prove useful for other client side functions. System.Web.UI.HtmlControls.HtmlGenericControl pBody = new System.Web.UI.HtmlControls.HtmlGenericControl(); pBody.TagName = "body"; pBody.Attributes.Add("onload", "document.getElementById
    Posted to Client Side Web Development (Forum) by mark836 on 11/4/2009
  • Automatically call a Submit button on client side?

    Hi. I have page that is called "Search". This "Search" page is used by multiple pages; I have the "Request.UrlReferrer.PathAndQuery" to determine what page called it so that I can go back to the calling page and pass results. Sometimes I have a response.redirect in a page to go to the "Search" Page. Unfortunately, the "Request.UrlReferrer.PathAndQuery" returns the pages directory other than the page that has the Response.redirect. Rather, it returns
    Posted to Client Side Web Development (Forum) by mark836 on 11/3/2009
Page 1 of 17 (164 items) 1 2 3 4 5 Next > ... Last »