vote up 2 vote down star

Hi guys,

I have a User control (because I use the same in other page, so I thought I should reuse code and not double my work), but in this page I show a list of companies and each one has a company number, I need to pass this company number to that User Control and it has to reload using that passed company number.

How can I accomplish this?

what I have so far:

alt text

the Show company structure link is made of

<a href="javascript:showStruct('112:201334607','5564967221');" 
   class="showStructLink">Show company structure</a>

the showStruct method is written like

  function showStruct(pid, cnr) {
     if (_showStrut == 0)
        return;

     // fancy stuff to be more apealing visually
     $("#tdSearch").removeClass("tabTitleUp01").addClass("tabTitleDownUp01");
     $("#tdStruct").removeClass("tabTitleDownUp02").addClass("tabTitleUp02");

     $("#srtr1").hide();
     $("#srtr2").hide();
     $("#sttr1").show();

     // enable Search Results tab to be clicked in order to get back
     $("#tdSearch")
        .addClass("pointer")
        .bind("click", function() { hideStructure(); });

     // pass the company number and reload wcCompanyStruture web user control
     // __doPostBack('RefreshWebUserControl', cnr);
  }

I can make a simple aspx page with the control inside and from jQuery invoke $.get() to run and populate the control correctly, but I really want to learn how to do this properly, using the ASP.NET AJAX Method to send a number and call RefreshData on it

using code-behind it is easy to refresh the user control, just invoking

wcCompanyStruture.RefreshData("companyNumberHere");

what do I need to do in my User Control side and well in the showStruct method to create this behavior?

All help is appreciated, Thank you.

flag

71% accept rate

2 Answers

vote up 0 vote down

You can use a LinkButton for each "Show Company Structure" link, and set the CommandArgument property with the corresponding company id. The LinkButton will cause a postback.

A second solution would be to use a hidden variable : <input type="hidden" id="hiddenCompanyNumber"> and set it's value in the showStruct method. You can then call __doPostBack(), for which you need a control upon which to postback I think.

All in all, I think the first solution is less hacky.

link|flag
vote up 0 vote down

You can find it here

http://codeclimber.net.nz/archive/2007/06/26/how-to-refresh-an-updatepanel-from-javascript.aspx

don't worry about the article title it has what you need Just do the four steps and you are ready to go.

link|flag
humm... there's a hidden textbox, just the way I'm doing but I can't get that value back, and in my page there is no updatePanel in the page... but it gives me a new pair of eyes on the subject. Thxs. – balexandre Nov 11 at 7:59
you welcome, would you please tell me what did you do to post the value in the hidden box so to know the reason why u r not getting a value if it is possible. thx – Kronass Nov 11 at 21:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.