create controls at run-time in .net
Posted
by
ahmed naguib
on Stack Overflow
See other posts from Stack Overflow
or by ahmed naguib
Published on 2012-04-01T23:13:39Z
Indexed on
2012/04/01
23:29 UTC
Read the original article
Hit count: 241
c#
|dynamically-generated
- i add a course then search in students grid view and select multiple students
- after i choose students say they are 50 student
- user enter the number of students in each group say =10 mean that i will have 5 groups each group contain 10 student
- when user click button a five container appear whatever these container are ul or listboxes
- user can move one student from one group to another group cause every group start course at specific date
notice : number of students user determine it and number of students in each group also user determine
container i didnot decide ul as i will write or text boxes but how to transfer student from one listbox to another
<ul group1>
<li>student1</li>
<li>student2</li>
<li>student3</li>
<li>student4</li>
<li>student5</li>
</ul>
<ul group1>
<li>student1</li>
<li>student2</li>
<li>student3</li>
<li>student4</li>
<li>student5</li>
</ul>
© Stack Overflow or respective owner