Click here to Skip to main content
16,009,407 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPaging with DataList in ASp.Net 1.1 Pin
clife5375-Sep-07 19:35
clife5375-Sep-07 19:35 
AnswerRe: Paging with DataList in ASp.Net 1.1 Pin
Michael Sync5-Sep-07 19:54
Michael Sync5-Sep-07 19:54 
AnswerRe: Paging with DataList in ASp.Net 1.1 Pin
John-ph5-Sep-07 21:29
John-ph5-Sep-07 21:29 
QuestionChange to Gregorian date Pin
samerh5-Sep-07 19:07
samerh5-Sep-07 19:07 
AnswerRe: Change to Gregorian date Pin
Ahmad Adnan5-Sep-07 20:00
Ahmad Adnan5-Sep-07 20:00 
Questionget the cell in a gridview row Pin
lcharan5-Sep-07 18:52
lcharan5-Sep-07 18:52 
AnswerRe: get the cell in a gridview row Pin
N a v a n e e t h5-Sep-07 19:25
N a v a n e e t h5-Sep-07 19:25 
Questionjavascript in listbox Pin
jayarajmrj5-Sep-07 18:49
jayarajmrj5-Sep-07 18:49 
function fnMoveItems(lstbxFrom,lstbxTo)
{
var varFromBox = document.all(lstbxFrom);
var varToBox = document.all(lstbxTo);
if ((varFromBox != null) && (varToBox != null))
{
if(varFromBox.length < 1)
{
alert('There are no items in the source ListBox');
return false;
}
if(varFromBox.options.selectedIndex == -1)
{
alert('Please select an Item to move');
return false;
}
while ( varFromBox.options.selectedIndex >= 0 )
{
var newOption = new Option();
newOption.text = varFromBox.options[varFromBox.options.selectedIndex].text;
newOption.value = varFromBox.options[varFromBox.options.selectedIndex].value;
varToBox.options[varToBox.length] = newOption;
varFromBox.remove(varFromBox.options.selectedIndex);
}
}
return false;
}

The above is my javascript code to move the values from one listbox to another. Once it move the values , the selected values are deleted from the sourceListbox(ie., left side listbox).
Actually my task is , it never deletes the selected value .
pls give the alternate code for it.
AnswerRe: javascript in listbox Pin
Parwej Ahamad5-Sep-07 19:17
professionalParwej Ahamad5-Sep-07 19:17 
Questionread a text file in asp.net (vs.net2003) Pin
Mri1a5-Sep-07 18:11
Mri1a5-Sep-07 18:11 
AnswerRe: read a text file in asp.net (vs.net2003) Pin
N a v a n e e t h5-Sep-07 18:33
N a v a n e e t h5-Sep-07 18:33 
AnswerRe: read a text file in asp.net (vs.net2003) Pin
Imran Khan Pathan5-Sep-07 19:41
Imran Khan Pathan5-Sep-07 19:41 
AnswerRe: read a text file in asp.net (vs.net2003) Pin
John-ph5-Sep-07 19:46
John-ph5-Sep-07 19:46 
QuestionLogin Navigation Pin
duo!@#5-Sep-07 16:46
duo!@#5-Sep-07 16:46 
AnswerRe: Login Navigation Pin
Sandeep Akhare6-Sep-07 0:33
Sandeep Akhare6-Sep-07 0:33 
GeneralRe: Login Navigation Pin
duo!@#6-Sep-07 18:22
duo!@#6-Sep-07 18:22 
QuestionHow to prepare ASP.NET to develope Sharepoint WebParts? Pin
baraayousuf5-Sep-07 16:30
baraayousuf5-Sep-07 16:30 
QuestionMaster Page div background images Pin
duo!@#5-Sep-07 16:19
duo!@#5-Sep-07 16:19 
AnswerRe: Master Page div background images Pin
Christian Graus5-Sep-07 16:33
protectorChristian Graus5-Sep-07 16:33 
Questionhow to secure access folder in asp.net? Pin
jerome_data5-Sep-07 14:19
jerome_data5-Sep-07 14:19 
AnswerRe: how to secure access folder in asp.net? Pin
Michael Sync5-Sep-07 16:39
Michael Sync5-Sep-07 16:39 
GeneralRe: how to secure access folder in asp.net? Pin
jerome_data5-Sep-07 21:39
jerome_data5-Sep-07 21:39 
GeneralRe: how to secure access folder in asp.net? Pin
Michael Sync5-Sep-07 23:08
Michael Sync5-Sep-07 23:08 
GeneralRe: how to secure access folder in asp.net? Pin
jerome_data5-Sep-07 23:57
jerome_data5-Sep-07 23:57 
GeneralRe: how to secure access folder in asp.net? Pin
Michael Sync6-Sep-07 2:23
Michael Sync6-Sep-07 2:23 

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.