Click here to Skip to main content
15,889,281 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: i am in trouble because of very big ASP form Pin
Christian Graus30-Jan-07 10:55
protectorChristian Graus30-Jan-07 10:55 
GeneralRe: i am in trouble because of very big ASP form Pin
Vasudevan Deepak Kumar1-Feb-07 3:55
Vasudevan Deepak Kumar1-Feb-07 3:55 
AnswerRe: i am in trouble because of very big ASP form Pin
Guffa30-Jan-07 14:47
Guffa30-Jan-07 14:47 
QuestionBinary SOAP and DIME - sending email with attachment Pin
sharmankit30-Jan-07 8:22
sharmankit30-Jan-07 8:22 
AnswerRe: Binary SOAP and DIME - sending email with attachment Pin
Vasudevan Deepak Kumar1-Feb-07 3:56
Vasudevan Deepak Kumar1-Feb-07 3:56 
GeneralRe: Binary SOAP and DIME - sending email with attachment Pin
sharmankit1-Feb-07 7:57
sharmankit1-Feb-07 7:57 
GeneralRe: Binary SOAP and DIME - sending email with attachment Pin
sharmankit1-Feb-07 13:35
sharmankit1-Feb-07 13:35 
QuestionDOM textbox Pin
Now_Loading30-Jan-07 5:36
Now_Loading30-Jan-07 5:36 
I have been developing a web application which relies heavily on DOM. Everything seems to be working except I cannot name my input tags. Here's my original code:

textbox = document.createElement("input");
textbox.type="text";
textbox.className="textbox";
textbox.name="MyTextboxName";

document.appendChild(textbox);

This code works fine, and everything is displayed. The only problem is that the name, MyTextboxName, is not being put into the code. when I do an innerHTML on the object that I am inserting the textbox in, I see everything EXCEPT for name="MyTextboxName". If I change textbox.name="MyTextboxName"; to textbox.Name="MyTextboxName"; (notice the capital "N"), I get Name="MyTextboxName" put into the code when I do an innerHTML. The only problem is, when I do a document.getElementsByName("MyTextboxName").length;, I get 0 returned, which means that it cannot be found. Also, if I target the element by index number, I get a textbox.name="" and textbox.Name=undefined.
Questionpage header-footer Pin
merapyar30-Jan-07 0:08
merapyar30-Jan-07 0:08 
AnswerRe: page header-footer Pin
Bradml30-Jan-07 0:11
Bradml30-Jan-07 0:11 
GeneralRe: page header-footer Pin
merapyar30-Jan-07 0:14
merapyar30-Jan-07 0:14 
GeneralRe: page header-footer Pin
Bradml30-Jan-07 0:17
Bradml30-Jan-07 0:17 
GeneralRe: page header-footer Pin
merapyar30-Jan-07 0:20
merapyar30-Jan-07 0:20 
GeneralRe: page header-footer Pin
Bradml30-Jan-07 0:22
Bradml30-Jan-07 0:22 
QuestionAdding TR after X rows Pin
brad_lucas29-Jan-07 21:48
brad_lucas29-Jan-07 21:48 
AnswerRe: Adding TR after X rows Pin
Vasudevan Deepak Kumar29-Jan-07 22:17
Vasudevan Deepak Kumar29-Jan-07 22:17 
GeneralRe: Adding TR after X rows Pin
brad_lucas29-Jan-07 22:54
brad_lucas29-Jan-07 22:54 
GeneralRe: Adding TR after X rows Pin
badgrs30-Jan-07 0:06
badgrs30-Jan-07 0:06 
GeneralRe: Adding TR after X rows Pin
brad_lucas30-Jan-07 1:05
brad_lucas30-Jan-07 1:05 
QuestionReading SharePoint User Information in ASP.NET Pin
A M SOMAN29-Jan-07 20:09
A M SOMAN29-Jan-07 20:09 
GeneralRe: Reading SharePoint User Information in ASP.NET Pin
A M SOMAN29-Jan-07 20:25
A M SOMAN29-Jan-07 20:25 
QuestionA question about two regular expression patterns, please help. Pin
howardjr29-Jan-07 10:30
howardjr29-Jan-07 10:30 
AnswerRe: A question about two regular expression patterns, please help. Pin
Guffa30-Jan-07 5:44
Guffa30-Jan-07 5:44 
GeneralRe: A question about two regular expression patterns, please help. Pin
howardjr31-Jan-07 9:26
howardjr31-Jan-07 9:26 
AnswerRe: A question about two regular expression patterns, please help. Pin
Christian Graus30-Jan-07 10:56
protectorChristian Graus30-Jan-07 10:56 

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.