Click here to Skip to main content
15,911,896 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp:Panel Displays Differently in Different Browsers Pin
Brendan Vogt16-Dec-07 2:28
Brendan Vogt16-Dec-07 2:28 
GeneralRe: asp:Panel Displays Differently in Different Browsers Pin
Bassam Saoud16-Dec-07 3:11
Bassam Saoud16-Dec-07 3:11 
GeneralRe: asp:Panel Displays Differently in Different Browsers Pin
Brendan Vogt16-Dec-07 3:15
Brendan Vogt16-Dec-07 3:15 
AnswerRe: asp:Panel Displays Differently in Different Browsers Pin
Guffa16-Dec-07 3:31
Guffa16-Dec-07 3:31 
QuestionHow I appear a custom dialog box ?? Pin
sofy200815-Dec-07 10:25
sofy200815-Dec-07 10:25 
AnswerRe: How I appear a custom dialog box ?? Pin
sepel15-Dec-07 18:43
sepel15-Dec-07 18:43 
GeneralRe: How I appear a custom dialog box ?? Pin
sofy200816-Dec-07 2:21
sofy200816-Dec-07 2:21 
GeneralRe: How I appear a custom dialog box ?? Pin
sepel16-Dec-07 3:00
sepel16-Dec-07 3:00 
you must add some javascript to onclient click of your buttons.
then in them call showDialog of javascript you need some parameter to return value of dialog result.
function ProductDialog(){
var mytext;
var myvalue;
}

function myShowDialog()
{
ProductDialog.mytext="";
ProductDialog.myvalue="";
if(window.showModalDialog('../Choose.aspx' ,ProductDialog,"dialogHeight:570px;dialogWidth:440px;Scrollbar=1") == true )
{
//do some thing
}
else
{
return;
}
}
in your buttons add this
onclientclick="if (myShowDialog()) return true; return false;"
in form that you showed it
write javascript to access dialog result
window.dialogArguments.mytext = s;
window.dialogArguments.myvalue = node.Value;
sepel

GeneralSqlDataAdapter.Fill Problem Pin
mehran.asg15-Dec-07 9:29
mehran.asg15-Dec-07 9:29 
GeneralRe: SqlDataAdapter.Fill Problem Pin
pmarfleet15-Dec-07 9:59
pmarfleet15-Dec-07 9:59 
GeneralRe: SqlDataAdapter.Fill Problem Pin
mehran.asg15-Dec-07 11:02
mehran.asg15-Dec-07 11:02 
GeneralGridview error - The GridView 'GridView1' fired event RowEditing which wasn't handled [modified] Pin
JacquesDP15-Dec-07 7:23
JacquesDP15-Dec-07 7:23 
GeneralRe: Gridview error - The GridView 'GridView1' fired event RowEditing which wasn't handled Pin
Christian Graus15-Dec-07 10:09
protectorChristian Graus15-Dec-07 10:09 
GeneralRe: Gridview error - The GridView 'GridView1' fired event RowEditing which wasn't handled Pin
JacquesDP16-Dec-07 2:13
JacquesDP16-Dec-07 2:13 
GeneralASP.NET Membership...well sucks! Pin
Tim McCurdy15-Dec-07 4:30
Tim McCurdy15-Dec-07 4:30 
GeneralGridView Pager Pin
wEb GuRu...15-Dec-07 2:56
wEb GuRu...15-Dec-07 2:56 
GeneralRe: GridView Pager Pin
Sathesh Sakthivel15-Dec-07 6:45
Sathesh Sakthivel15-Dec-07 6:45 
GeneralProblem in dynamically adding the OnClick Event handler to the link button control Pin
Rocky#15-Dec-07 1:34
Rocky#15-Dec-07 1:34 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Bassam Saoud15-Dec-07 2:06
Bassam Saoud15-Dec-07 2:06 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Rocky#15-Dec-07 2:13
Rocky#15-Dec-07 2:13 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Bassam Saoud15-Dec-07 2:16
Bassam Saoud15-Dec-07 2:16 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Rocky#15-Dec-07 2:26
Rocky#15-Dec-07 2:26 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Bassam Saoud15-Dec-07 2:56
Bassam Saoud15-Dec-07 2:56 
GeneralRe: Problem in dynamically adding the OnClick Event handler to the link button control Pin
Rocky#15-Dec-07 3:38
Rocky#15-Dec-07 3:38 
GeneralHi, Pin
Anuradha61215-Dec-07 1:24
Anuradha61215-Dec-07 1:24 

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.