Click here to Skip to main content
15,913,287 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionimage capture from webcam Pin
bhat.vasu9-Apr-07 20:06
bhat.vasu9-Apr-07 20:06 
QuestionSelecting first N rows in DataView Pin
rachitdamani9-Apr-07 20:01
rachitdamani9-Apr-07 20:01 
AnswerRe: Selecting first N rows in DataView Pin
enjoycrack9-Apr-07 20:09
enjoycrack9-Apr-07 20:09 
GeneralRe: Selecting first N rows in DataView Pin
rachitdamani9-Apr-07 20:16
rachitdamani9-Apr-07 20:16 
GeneralRe: Selecting first N rows in DataView Pin
enjoycrack9-Apr-07 20:24
enjoycrack9-Apr-07 20:24 
GeneralRe: Selecting first N rows in DataView Pin
rachitdamani9-Apr-07 20:26
rachitdamani9-Apr-07 20:26 
QuestionHow to add an item to asp:listbox in clientside? Pin
.NetRams9-Apr-07 19:35
.NetRams9-Apr-07 19:35 
AnswerRe: How to add an item to asp:listbox in clientside? Pin
Mark Greenwood9-Apr-07 20:36
Mark Greenwood9-Apr-07 20:36 
<code>
<body>
<form id="form1" runat="server">

<asp:ListBox ID="ListBox1" runat="server"></asp:ListBox>
</form>
<script>
var listBox = document.getElementById( '<%= ListBox1.ClientID %>' );
alert(listBox.length);
listBox.options[0] = new Option("Hello");
alert(listBox.length);
</script>
</body>
</code>

Like this.......

Note that there is no ADD item as such that work cross browser, you have to get the number of items currently there and then add new ones by changing the index (the options[indexnumber] above).

Mark.
Questionclosing frameset Pin
Sebastian T Xavier9-Apr-07 19:12
Sebastian T Xavier9-Apr-07 19:12 
AnswerRe: closing frameset Pin
Mykola Tarasyuk9-Apr-07 22:41
Mykola Tarasyuk9-Apr-07 22:41 
Question.net roadmap Pin
bigeyed9-Apr-07 19:02
bigeyed9-Apr-07 19:02 
QuestionASP Count current use online Pin
Socheat.Net9-Apr-07 17:20
Socheat.Net9-Apr-07 17:20 
AnswerRe: ASP Count current use online Pin
enjoycrack9-Apr-07 20:37
enjoycrack9-Apr-07 20:37 
AnswerRe: ASP Count current use online Pin
PavanPareta9-Apr-07 21:11
PavanPareta9-Apr-07 21:11 
QuestionMask Control for ASP.NET Pin
LarisaL9-Apr-07 17:16
LarisaL9-Apr-07 17:16 
AnswerRe: Mask Control for ASP.NET Pin
Kunal P9-Apr-07 18:32
Kunal P9-Apr-07 18:32 
Questionhow to retrieve multiple data from sql database and store in variables Pin
neodeaths9-Apr-07 16:15
neodeaths9-Apr-07 16:15 
AnswerRe: how to retrieve multiple data from sql database and store in variables Pin
Not Active9-Apr-07 16:55
mentorNot Active9-Apr-07 16:55 
Questionneed help: validation of date Pin
neodeaths9-Apr-07 16:07
neodeaths9-Apr-07 16:07 
AnswerRe: need help: validation of date Pin
Sathesh Sakthivel9-Apr-07 16:49
Sathesh Sakthivel9-Apr-07 16:49 
AnswerRe: need help: validation of date Pin
Not Active9-Apr-07 16:51
mentorNot Active9-Apr-07 16:51 
GeneralRe: need help: validation of date Pin
neodeaths9-Apr-07 19:49
neodeaths9-Apr-07 19:49 
GeneralRe: need help: validation of date Pin
Not Active10-Apr-07 2:04
mentorNot Active10-Apr-07 2:04 
AnswerRe: need help: validation of date Pin
Kunal P9-Apr-07 18:23
Kunal P9-Apr-07 18:23 
GeneralRe: need help: validation of date Pin
neodeaths9-Apr-07 18:42
neodeaths9-Apr-07 18:42 

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.