Click here to Skip to main content
15,894,825 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Tree View Issue Pin
Herman<T>.Instance14-Apr-08 5:02
Herman<T>.Instance14-Apr-08 5:02 
Generalcall method from another UserControl [modified] [SOLVED] Pin
tradakad12-Apr-08 1:30
tradakad12-Apr-08 1:30 
GeneralRe: call method from another UserControl Pin
pmarfleet12-Apr-08 4:33
pmarfleet12-Apr-08 4:33 
GeneralRe: call method from another UserControl Pin
tradakad12-Apr-08 23:01
tradakad12-Apr-08 23:01 
GeneralRe: call method from another UserControl Pin
AlexeiXX312-Apr-08 11:44
AlexeiXX312-Apr-08 11:44 
GeneralRe: call method from another UserControl Pin
tradakad12-Apr-08 23:13
tradakad12-Apr-08 23:13 
GeneralRe: call method from another UserControl Pin
AlexeiXX313-Apr-08 15:14
AlexeiXX313-Apr-08 15:14 
GeneralRe: call method from another UserControl Pin
tradakad15-Apr-08 1:48
tradakad15-Apr-08 1:48 
Hi, Alexei!

I'm not able to do it offcourse - because I tryed it at first.

but I have solved this task - i did so:

into index.aspx I wrote

    protected void Page_Init(object sender, EventArgs e)<br />
    {<br />
<br />
        controls_left ctrRight = ctrRightControl;<br />
        controls_right ctrLeft = ctrLeftControl;<br />
<br />
        ctrRight.RefreshSuraEvent += new controls_right.EventHandler(controls_left_DoSmth);<br />
    }<br />
    <br />
    private void controls_left_DoSmth(object sender, EventArgs e)<br />
    {<br />
        ctrRightControl.NeedingMethod();<br />
        ctrRightControl.ddlSura.SelectedItemIndex = 0;<br />
<br />
    }


into leftCOntol code

    public delegate void EventHandler(Object obj, EventArgs e);<br />
    <br />
    public event EventHandler RefreshEvent;<br />
<br />
    protected void RefreshList()<br />
    {<br />
        if (RefreshEvent != null)<br />
        {<br />
            RefreshEvent(this, new EventArgs());<br />
        }<br />
    }<br />
<br />
    protected void ddlReciterSelect_SelectedIndexChanged(object sender, EventArgs e)<br />
    {<br />
<br />
        // some code<br />
        <br />
<br />
        RefreshList();<br />
        <br />
    }


now all is ok. it is solved. thanx to allfor the help Smile | :)

--
"Success is simple. Do what's right, the right way, at the right time."

best regards,
tradakad

Generalchecking domainname availability with ajax Pin
Miss Maheshwari12-Apr-08 0:43
Miss Maheshwari12-Apr-08 0:43 
GeneralRe: checking domainname availability with ajax Pin
Christian Graus12-Apr-08 0:47
protectorChristian Graus12-Apr-08 0:47 
GeneralRe: checking domainname availability with ajax Pin
AlexeiXX312-Apr-08 11:38
AlexeiXX312-Apr-08 11:38 
GeneralRe: checking domainname availability with ajax Pin
Miss Maheshwari13-Apr-08 19:34
Miss Maheshwari13-Apr-08 19:34 
GeneralRe: checking domainname availability with ajax Pin
AlexeiXX313-Apr-08 19:38
AlexeiXX313-Apr-08 19:38 
QuestionIs there a possible way to use int numbers instead of GUID in aspnet_Users? Pin
quakertistar12-Apr-08 0:08
quakertistar12-Apr-08 0:08 
AnswerRe: Is there a possible way to use int numbers instead of GUID in aspnet_Users? Pin
pmarfleet12-Apr-08 1:08
pmarfleet12-Apr-08 1:08 
GeneralRe: Is there a possible way to use int numbers instead of GUID in aspnet_Users? Pin
quakertistar12-Apr-08 2:33
quakertistar12-Apr-08 2:33 
GeneralRe: Is there a possible way to use int numbers instead of GUID in aspnet_Users? Pin
pmarfleet12-Apr-08 4:20
pmarfleet12-Apr-08 4:20 
GeneralRe: Is there a possible way to use int numbers instead of GUID in aspnet_Users? Pin
quakertistar13-Apr-08 22:38
quakertistar13-Apr-08 22:38 
QuestionProblem with Profile Pin
Saba0211-Apr-08 23:26
Saba0211-Apr-08 23:26 
GeneralRe: Problem with Profile Pin
Blue_Boy12-Apr-08 0:14
Blue_Boy12-Apr-08 0:14 
GeneralRe: Problem with Profile Pin
Saba0212-Apr-08 0:19
Saba0212-Apr-08 0:19 
GeneralRe: Problem with Profile Pin
Christian Graus12-Apr-08 0:35
protectorChristian Graus12-Apr-08 0:35 
GeneralRe: Problem with Profile Pin
Member 247162112-Apr-08 1:10
Member 247162112-Apr-08 1:10 
GeneralRe: Problem with Profile Pin
Christian Graus13-Apr-08 11:14
protectorChristian Graus13-Apr-08 11:14 
QuestionGetting ids of elements Pin
jonhbt11-Apr-08 21:47
jonhbt11-Apr-08 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.