Click here to Skip to main content
15,908,841 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Checkbox in Datagrid failing on Add New Row Pin
kinnuP5-Feb-07 21:15
kinnuP5-Feb-07 21:15 
GeneralRe: Checkbox in Datagrid failing on Add New Row Pin
BORN...again!6-Feb-07 11:59
BORN...again!6-Feb-07 11:59 
GeneralRe: Checkbox in Datagrid failing on Add New Row Pin
Marcus J. Smith6-Feb-07 13:56
professionalMarcus J. Smith6-Feb-07 13:56 
Questionproblem while building new project Pin
obarahmeh5-Feb-07 11:16
obarahmeh5-Feb-07 11:16 
AnswerRe: problem while building new project Pin
Christian Graus5-Feb-07 12:29
protectorChristian Graus5-Feb-07 12:29 
AnswerRe: problem while building new project Pin
GOPIRATHINA5-Feb-07 20:38
GOPIRATHINA5-Feb-07 20:38 
Questionjavascript - display items in listbox matching the keys pressed Pin
ssircar19715-Feb-07 10:55
ssircar19715-Feb-07 10:55 
AnswerRe: javascript - display items in listbox matching the keys pressed Pin
Artem Kustikov5-Feb-07 21:27
Artem Kustikov5-Feb-07 21:27 
You can handle onkeyup event of textbox and populate listbox with neccessary items in it
function getKeyCode (e_) {
  return parseInt(e_ ? e_.which : window.event.keyCode);
}
function srcEl(e_) {
  if (window.event)
    return window.event.srcElement;
  else
    return (e_ ? e_.target : null);
}
function onKeyUp(e) {
  var textbox = srcEl(e),
        keyCode = getKeyCode(e);

  var text = textbox.value;
    ....
    fill list box based on "text" string
    ....
}

textbox.onkeyup = onKeyUp;

QuestionCaching based on e.CommandName Pin
DISP-Jol5-Feb-07 6:04
DISP-Jol5-Feb-07 6:04 
AnswerRe: Caching based on e.CommandName Pin
enjoycrack5-Feb-07 6:14
enjoycrack5-Feb-07 6:14 
GeneralRe: Caching based on e.CommandName Pin
DISP-Jol5-Feb-07 6:20
DISP-Jol5-Feb-07 6:20 
GeneralRe: Caching based on e.CommandName Pin
enjoycrack5-Feb-07 6:29
enjoycrack5-Feb-07 6:29 
GeneralRe: Caching based on e.CommandName Pin
DISP-Jol5-Feb-07 8:43
DISP-Jol5-Feb-07 8:43 
Questionpassing parameter to crystal report Pin
bazpaul5-Feb-07 6:03
bazpaul5-Feb-07 6:03 
AnswerRe: passing parameter to crystal report Pin
DISP-Jol5-Feb-07 6:14
DISP-Jol5-Feb-07 6:14 
GeneralRe: passing parameter to crystal report Pin
bazpaul6-Feb-07 1:03
bazpaul6-Feb-07 1:03 
GeneralRe: passing parameter to crystal report Pin
DISP-Jol6-Feb-07 3:27
DISP-Jol6-Feb-07 3:27 
GeneralRe: passing parameter to crystal report Pin
bazpaul6-Feb-07 4:31
bazpaul6-Feb-07 4:31 
QuestionTextbox Validation Pin
kavi20005-Feb-07 6:01
kavi20005-Feb-07 6:01 
AnswerRe: Textbox Validation Pin
enjoycrack5-Feb-07 6:20
enjoycrack5-Feb-07 6:20 
AnswerRe: Textbox Validation Pin
Sandeep Akhare5-Feb-07 18:20
Sandeep Akhare5-Feb-07 18:20 
QuestionHai,any tools to develope DSD for asp.net web project Pin
suriee5-Feb-07 5:30
suriee5-Feb-07 5:30 
Questionsending mail Pin
girishdonde5-Feb-07 5:28
girishdonde5-Feb-07 5:28 
AnswerRe: sending mail Pin
enjoycrack5-Feb-07 6:24
enjoycrack5-Feb-07 6:24 
AnswerRe: sending mail Pin
DISP-Jol5-Feb-07 6:44
DISP-Jol5-Feb-07 6:44 

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.