R
Rob Manger
Hi All,
I have a problem I would love to be able to solve easily.
I want to be able to display a MessageBox from an ascx page with yes and no
buttons, then process the result from withing the ASCX code.
Considering the following psuedocode, I want the messagebox to appear at
<<Prompt>>. Is there any way I can do this?
Any help would be hugely appreciated
Rob Manger
============Code==============
private void btn_Click()
{
if (CheckA())
{
if (CheckB())
{
<<Prompt>>
If(Yes)
{
Continue()
}
else
{
Cancel and Set focus on textbox
}
}
}
}
I have a problem I would love to be able to solve easily.
I want to be able to display a MessageBox from an ascx page with yes and no
buttons, then process the result from withing the ASCX code.
Considering the following psuedocode, I want the messagebox to appear at
<<Prompt>>. Is there any way I can do this?
Any help would be hugely appreciated
Rob Manger
============Code==============
private void btn_Click()
{
if (CheckA())
{
if (CheckB())
{
<<Prompt>>
If(Yes)
{
Continue()
}
else
{
Cancel and Set focus on textbox
}
}
}
}