Click here to Skip to main content
15,895,084 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How To find the Node in tree Control Pin
minhpc_bk24-Jul-06 0:09
minhpc_bk24-Jul-06 0:09 
QuestionWhat should I read XML output from an SQL procedure into if i want to use it with the XML tool? Pin
Red_Wizard_Shot_The_Food23-Jul-06 22:54
Red_Wizard_Shot_The_Food23-Jul-06 22:54 
AnswerRe: What should I read XML output from an SQL procedure into if i want to use it with the XML tool? Pin
Paddy Boyd23-Jul-06 23:30
Paddy Boyd23-Jul-06 23:30 
QuestionDynamic Control Pin
MHASSANF23-Jul-06 22:44
MHASSANF23-Jul-06 22:44 
AnswerRe: Dynamic Control Pin
_AK_23-Jul-06 22:52
_AK_23-Jul-06 22:52 
GeneralRe: Dynamic Control Pin
MHASSANF23-Jul-06 23:01
MHASSANF23-Jul-06 23:01 
GeneralRe: Dynamic Control Pin
_AK_23-Jul-06 23:04
_AK_23-Jul-06 23:04 
AnswerRe: Dynamic Control Pin
mnaveed23-Jul-06 23:02
mnaveed23-Jul-06 23:02 
when we adding a control to an ASP.NET Web page first need to create an instance of the control you want to add. add a TextBox control to the Web page first need to create the TextBox control, which u can do in ur Page_Load:

TextBox tb = new TextBox();<br />
tb.ID = "TB1"; <br />
tb.Text = "MHASSANF";
Finally need to add this control to the Web page.the Controls property has an Add method:
Controls.Add(tb);

you can use the AddAt method to add control on a fixed position as wel.




Nav.

Questionhow to create a folderBrowser in ASP.net Pin
nannapanenikamalnath23-Jul-06 22:40
nannapanenikamalnath23-Jul-06 22:40 
Questiontable problem in vb.net 1.1 Pin
amaneet23-Jul-06 22:33
amaneet23-Jul-06 22:33 
AnswerRe: table problem in vb.net 1.1 [modified] Pin
abrab23-Jul-06 22:51
abrab23-Jul-06 22:51 
GeneralRe: table problem in vb.net 1.1 Pin
amaneet23-Jul-06 23:07
amaneet23-Jul-06 23:07 
Question"three tier " Pin
ravikiranreddydharmannagari23-Jul-06 22:08
ravikiranreddydharmannagari23-Jul-06 22:08 
AnswerRe: "three tier " Pin
Paddy Boyd23-Jul-06 22:23
Paddy Boyd23-Jul-06 22:23 
Question"three tier " Pin
ravikiranreddydharmannagari23-Jul-06 23:37
ravikiranreddydharmannagari23-Jul-06 23:37 
AnswerRe: "three tier " Pin
mnaveed23-Jul-06 22:41
mnaveed23-Jul-06 22:41 
QuestionRe: "three tier " Pin
ravikiranreddydharmannagari23-Jul-06 23:48
ravikiranreddydharmannagari23-Jul-06 23:48 
AnswerRe: "three tier " Pin
mnaveed23-Jul-06 23:54
mnaveed23-Jul-06 23:54 
GeneralRe: "three tier " Pin
ravikiranreddydharmannagari24-Jul-06 1:30
ravikiranreddydharmannagari24-Jul-06 1:30 
QuestionAutomatically add querystring to links Pin
cyber-will23-Jul-06 22:07
cyber-will23-Jul-06 22:07 
AnswerRe: Automatically add querystring to links Pin
Paddy Boyd23-Jul-06 22:30
Paddy Boyd23-Jul-06 22:30 
GeneralRe: Automatically add querystring to links Pin
cyber-will23-Jul-06 23:32
cyber-will23-Jul-06 23:32 
AnswerRe: Automatically add querystring to links Pin
minhpc_bk23-Jul-06 23:57
minhpc_bk23-Jul-06 23:57 
Questionhow to move a folders Pin
nannapanenikamalnath23-Jul-06 21:55
nannapanenikamalnath23-Jul-06 21:55 
Questionhow to create a folderBrowser inASP.net Pin
nannapanenikamalnath23-Jul-06 21:51
nannapanenikamalnath23-Jul-06 21:51 

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.