Click here to Skip to main content
15,884,040 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How get List of all domain and pc ? Pin
Paddy Boyd7-Jan-09 2:47
Paddy Boyd7-Jan-09 2:47 
QuestionWant to display HTML file in aspx page Pin
Anand Desai6-Jan-09 21:27
Anand Desai6-Jan-09 21:27 
AnswerRe: Want to display HTML file in aspx page Pin
Colin Angus Mackay6-Jan-09 21:37
Colin Angus Mackay6-Jan-09 21:37 
GeneralRe: Want to display HTML file in aspx page Pin
Anand Desai6-Jan-09 21:43
Anand Desai6-Jan-09 21:43 
GeneralRe: Want to display HTML file in aspx page Pin
N a v a n e e t h6-Jan-09 21:55
N a v a n e e t h6-Jan-09 21:55 
QuestionPublishing a website created in VS2005 on windows 2003 server using remote desktop connection.... Pin
bishwambhar_sen6-Jan-09 21:16
bishwambhar_sen6-Jan-09 21:16 
AnswerRe: Publishing a website created in VS2005 on windows 2003 server using remote desktop connection.... Pin
Colin Angus Mackay6-Jan-09 21:34
Colin Angus Mackay6-Jan-09 21:34 
QuestionRead and Insert Data From Dynamic TextBox?public partial class test : System.Web.UI.Page Pin
developer.ravish6-Jan-09 20:38
developer.ravish6-Jan-09 20:38 
public partial class test : System.Web.UI.Page
{
LiteralControl LCT1, LCT2;
protected void Page_Load(object sender, EventArgs e)
{

if (Page.IsPostBack)
{

if (txtbox.Text != "")
{


}

}
}

private void CreateControl()
{


for (int i = 0; i <= Convert.ToInt32(txtbox.Text) - 1; i++)
{

LCT1 = new LiteralControl();
LCT1.Text = "<br/>";
TextBox txt_box = new TextBox();
txt_box.ID = "txt" + "" + i.ToString();
PH1.Controls.Add(LCT1);
PH1.Controls.Add(txt_box);
//////////////////////
LCT2 = new LiteralControl();
LCT2.Text = "<br/>";
TextBox text_box = new TextBox();
text_box.ID = "txt_" + i.ToString();
PH2.Controls.Add(LCT2);
PH2.Controls.Add(text_box);


}

}

protected void Button1_Click(object sender, EventArgs e)
{
CreateControl();
}
protected void Save_Click(object sender, EventArgs e)
{
//Now here i want to insert value in Database from my textboxes which is created in PH1 and PH2

}
AnswerRe: Read and Insert Data From Dynamic TextBox?public partial class test : System.Web.UI.Page Pin
N a v a n e e t h6-Jan-09 21:00
N a v a n e e t h6-Jan-09 21:00 
QuestionCan any one answer my quesion? Pin
Hema Bairavan6-Jan-09 20:33
Hema Bairavan6-Jan-09 20:33 
GeneralRe: Can any one answer my quesion? Pin
Guffa6-Jan-09 21:55
Guffa6-Jan-09 21:55 
Generalrequiredfieldvalidator need to fire by clicking only button Pin
kamakshim6-Jan-09 20:10
kamakshim6-Jan-09 20:10 
QuestionHow to create modules in website project in microsoft visual studio 2008? Pin
alyy04066-Jan-09 19:59
alyy04066-Jan-09 19:59 
AnswerRe: How to create modules in website project in microsoft visual studio 2008? Pin
SeMartens6-Jan-09 22:56
SeMartens6-Jan-09 22:56 
GeneralRe: How to create modules in website project in microsoft visual studio 2008? Pin
alyy04066-Jan-09 23:53
alyy04066-Jan-09 23:53 
QuestionRole based authorization problem Pin
Mogaambo6-Jan-09 19:57
Mogaambo6-Jan-09 19:57 
QuestionXML and Javascript Pin
jonhbt6-Jan-09 19:48
jonhbt6-Jan-09 19:48 
AnswerRe: XML and Javascript Pin
N a v a n e e t h6-Jan-09 20:01
N a v a n e e t h6-Jan-09 20:01 
GeneralRe: XML and Javascript Pin
jonhbt6-Jan-09 20:15
jonhbt6-Jan-09 20:15 
AnswerRe: XML and Javascript Pin
Aman Bhullar6-Jan-09 20:19
Aman Bhullar6-Jan-09 20:19 
Question.Net and COM interop Pin
TSKNaidu6-Jan-09 19:43
TSKNaidu6-Jan-09 19:43 
AnswerRe: .Net and COM interop Pin
N a v a n e e t h6-Jan-09 19:53
N a v a n e e t h6-Jan-09 19:53 
GeneralRe: .Net and COM interop Pin
TSKNaidu7-Jan-09 3:02
TSKNaidu7-Jan-09 3:02 
QuestionHow to get the reference of label control through javascript? Pin
meeram3956-Jan-09 19:41
meeram3956-Jan-09 19:41 
AnswerRe: How to get the reference of label control through javascript? Pin
N a v a n e e t h6-Jan-09 19:56
N a v a n e e t h6-Jan-09 19: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.