Click here to Skip to main content
16,008,183 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: User logon NTLM - yes I am a newbie! Pin
DFU236-Jan-03 11:35
DFU236-Jan-03 11:35 
QuestionIs there any easy way to transfer objects between javascript and server ? Pin
zhuzhenhuan30-Dec-02 16:19
zhuzhenhuan30-Dec-02 16:19 
AnswerRe: Is there any easy way to transfer objects between javascript and server ? Pin
alex.barylski30-Dec-02 21:39
alex.barylski30-Dec-02 21:39 
GeneralRe: Is there any easy way to transfer objects between javascript and server ? Pin
zhuzhenhuan31-Dec-02 1:23
zhuzhenhuan31-Dec-02 1:23 
GeneralRe: Is there any easy way to transfer objects between javascript and server ? Pin
Paul Watson31-Dec-02 5:15
sitebuilderPaul Watson31-Dec-02 5:15 
GeneralRe: Is there any easy way to transfer objects between javascript and server ? Pin
Stephane Rodriguez.2-Jan-03 5:03
Stephane Rodriguez.2-Jan-03 5:03 
Generaljavascript event handling problem Pin
Shaun Wilde30-Dec-02 13:23
Shaun Wilde30-Dec-02 13:23 
GeneralRe: javascript event handling problem Pin
Richard Deeming2-Jan-03 2:46
mveRichard Deeming2-Jan-03 2:46 
Event handlers in the DHTML Object Model do not receive parameters directly. You will need to store the parameter in a page-level variable, or as an expando property of the object. For example:
function Init(obj, arq)
{
    obj.arq = arq;
    obj.onkeydown = dofunc;
    obj.onkeyup = dofunc;
    obj.onclick = dofunc;
}
 
function dofunc()
{
    var obj = event.srcElement;
    var arq = obj.arq;
    // Do stuff here...
}



"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
GeneralRe: javascript event handling problem Pin
Shaun Wilde2-Jan-03 3:34
Shaun Wilde2-Jan-03 3:34 
GeneralRe: javascript event handling problem Pin
Ben Burnett5-Jan-03 13:34
Ben Burnett5-Jan-03 13:34 
GeneralRe: javascript event handling problem Pin
Shaun Wilde6-Jan-03 0:22
Shaun Wilde6-Jan-03 0:22 
GeneralMy own 404 page Pin
Nnamdi Onyeyiri29-Dec-02 7:40
Nnamdi Onyeyiri29-Dec-02 7:40 
GeneralRe: My own 404 page Pin
Paul Ingles29-Dec-02 13:59
Paul Ingles29-Dec-02 13:59 
GeneralRe: My own 404 page Pin
Nnamdi Onyeyiri29-Dec-02 23:19
Nnamdi Onyeyiri29-Dec-02 23:19 
QuestionASP/IIS stalling????? Pin
Matt Gullett27-Dec-02 11:32
Matt Gullett27-Dec-02 11:32 
AnswerNevermind... Pin
Matt Gullett27-Dec-02 14:03
Matt Gullett27-Dec-02 14:03 
GeneralActiveX and IHTMLDocument Pin
Jörgen Sigvardsson27-Dec-02 3:49
Jörgen Sigvardsson27-Dec-02 3:49 
QuestionHow do I execute a query through an ASP page to update my fields Pin
E Slipchenko26-Dec-02 18:38
E Slipchenko26-Dec-02 18:38 
GeneralOpen dialog box from a web form Pin
Eric "Metal" Miller26-Dec-02 6:09
Eric "Metal" Miller26-Dec-02 6:09 
GeneralRe: Open dialog box from a web form Pin
Tatham26-Dec-02 6:51
Tatham26-Dec-02 6:51 
GeneralRe: Open dialog box from a web form Pin
Eric "Metal" Miller26-Dec-02 8:42
Eric "Metal" Miller26-Dec-02 8:42 
QuestionHow to perform complicated operations by Win32 Application from an ASP page ? Pin
TPN25-Dec-02 23:36
TPN25-Dec-02 23:36 
AnswerRe: How to perform complicated operations by Win32 Application from an ASP page ? Pin
Daniel Turini26-Dec-02 0:50
Daniel Turini26-Dec-02 0:50 
GeneralRe: How to perform complicated operations by Win32 Application from an ASP page ? Pin
TPN26-Dec-02 19:06
TPN26-Dec-02 19:06 
GeneralRe: How to perform complicated operations by Win32 Application from an ASP page ? Pin
Torsten Mauz29-Jan-03 15:54
Torsten Mauz29-Jan-03 15:54 

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.