Click here to Skip to main content
15,900,725 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Install a software without downloading and prompting Pin
Manas Bhardwaj23-Jul-09 5:37
professionalManas Bhardwaj23-Jul-09 5:37 
AnswerRe: Install a software without downloading and prompting Pin
Abhijit Jana23-Jul-09 5:51
professionalAbhijit Jana23-Jul-09 5:51 
GeneralRe: Install a software without downloading and prompting Pin
Member 159723023-Jul-09 7:07
Member 159723023-Jul-09 7:07 
Questioncan i launch web application built on express edition? Legally? Pin
Lucky Na23-Jul-09 4:41
Lucky Na23-Jul-09 4:41 
AnswerRe: can i launch web application built on express edition? Legally? Pin
N a v a n e e t h23-Jul-09 5:27
N a v a n e e t h23-Jul-09 5:27 
Question[Message Deleted] Pin
Omar Gameel Salem23-Jul-09 1:56
professionalOmar Gameel Salem23-Jul-09 1:56 
AnswerRe: getting value of dynamically created textboxes Pin
Abhijit Jana23-Jul-09 2:05
professionalAbhijit Jana23-Jul-09 2:05 
GeneralRe: getting value of dynamically created textboxes Pin
Omar Gameel Salem23-Jul-09 2:32
professionalOmar Gameel Salem23-Jul-09 2:32 








function addkeywordBox()
{
if (!document.getElementById || !document.createElement)
return false;

var keywordArea = document.getElementById ("keyword-area");

if (!keywordArea)
return;

var newLine = document.createElement ("br");
keywordArea.appendChild (newLine);

var newkeywordBox = document.createElement ("input");

// Set up the new input for file uploads
newkeywordBox.type = "text";
newkeywordBox.size = "60";

// The new box needs a name and an ID
if (!addFileUploadBox.lastAssignedId)
addFileUploadBox.lastAssignedId = 100;

newkeywordBox.setAttribute ("id", "dynamic" + addkeywordBox.lastAssignedId);
newkeywordBox.setAttribute ("name", "dynamic:" + addkeywordBox.lastAssignedId);
keywordArea.appendChild (newkeywordBox);
addkeywordBox.lastAssignedId++;
}

AnswerRe: getting value of dynamically created textboxes Pin
Muhammad Mazhar23-Jul-09 2:21
Muhammad Mazhar23-Jul-09 2:21 
GeneralRe: getting value of dynamically created textboxes Pin
Omar Gameel Salem23-Jul-09 2:30
professionalOmar Gameel Salem23-Jul-09 2:30 
GeneralRe: getting value of dynamically created textboxes Pin
DoctorMick23-Jul-09 5:09
DoctorMick23-Jul-09 5:09 
QuestionDisplay Image along with text in dropdownlist Pin
SreejithAchutan23-Jul-09 1:38
SreejithAchutan23-Jul-09 1:38 
AnswerRe: Display Image along with text in dropdownlist Pin
Muhammad Mazhar23-Jul-09 1:55
Muhammad Mazhar23-Jul-09 1:55 
AnswerRe: Display Image along with text in dropdownlist Pin
Abhijit Jana23-Jul-09 1:56
professionalAbhijit Jana23-Jul-09 1:56 
GeneralRe: Display Image along with text in dropdownlist Pin
SreejithAchutan23-Jul-09 2:03
SreejithAchutan23-Jul-09 2:03 
GeneralRe: Display Image along with text in dropdownlist Pin
Brij23-Jul-09 2:07
mentorBrij23-Jul-09 2:07 
AnswerRe: Display Image along with text in dropdownlist Pin
Brij23-Jul-09 2:06
mentorBrij23-Jul-09 2:06 
AnswerRe: Display Image along with text in dropdownlist Pin
Mike Ellison23-Jul-09 14:35
Mike Ellison23-Jul-09 14:35 
QuestionChatting Pin
M Sami Khan23-Jul-09 1:34
M Sami Khan23-Jul-09 1:34 
AnswerRe: Chatting Pin
Abhijit Jana23-Jul-09 1:37
professionalAbhijit Jana23-Jul-09 1:37 
GeneralRe: Chatting Pin
M Sami Khan23-Jul-09 1:56
M Sami Khan23-Jul-09 1:56 
GeneralRe: Chatting Pin
Abhijit Jana23-Jul-09 2:03
professionalAbhijit Jana23-Jul-09 2:03 
GeneralRe: Chatting Pin
Muhammad Mazhar23-Jul-09 2:13
Muhammad Mazhar23-Jul-09 2:13 
GeneralRe: Chatting Pin
M Sami Khan24-Jul-09 6:06
M Sami Khan24-Jul-09 6:06 
QuestionHow to make bulk update using TableAdapter Pin
saran78923-Jul-09 1:24
saran78923-Jul-09 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.