Click here to Skip to main content
15,910,009 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to get a subset from a resultant dataset Pin
BSRK6-Mar-07 0:32
BSRK6-Mar-07 0:32 
GeneralRe: how to get a subset from a resultant dataset Pin
Sandeep Akhare6-Mar-07 0:39
Sandeep Akhare6-Mar-07 0:39 
GeneralRe: how to get a subset from a resultant dataset Pin
Member 38798816-Mar-07 0:51
Member 38798816-Mar-07 0:51 
Questionwhat is the solution for this? Pin
senthil_rajesh_kavin5-Mar-07 23:16
senthil_rajesh_kavin5-Mar-07 23:16 
AnswerRe: what is the solution for this? Pin
badgrs5-Mar-07 23:19
badgrs5-Mar-07 23:19 
GeneralRe: what is the solution for this? Pin
senthil_rajesh_kavin5-Mar-07 23:48
senthil_rajesh_kavin5-Mar-07 23:48 
GeneralRe: what is the solution for this? Pin
Irshad Sulaimani6-Mar-07 0:34
Irshad Sulaimani6-Mar-07 0:34 
GeneralRe: what is the solution for this? Pin
badgrs6-Mar-07 1:59
badgrs6-Mar-07 1:59 
public partial class Default2 : System.Web.UI.Page
{
private TextBox TextBox1;
public void Page_Load(object sender, EventArgs e)
{
TextBox1 = new TextBox();
TextBox1.ID = "TextBox1";
form1.Controls.Add(TextBox1);


}
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Server=localhost;uid='sa';pwd='sa';DataBase=master");
SqlCommand com=new SqlCommand("insert into table1 values('"+TextBox1.Text+"')",con);
SqlDataReader rr=com.ExecuteReader();

}
}

Questiondoes working in different browsers give different output? Pin
anuparvathy5-Mar-07 23:11
anuparvathy5-Mar-07 23:11 
AnswerRe: does working in different browsers give different output? Pin
badgrs5-Mar-07 23:17
badgrs5-Mar-07 23:17 
QuestionLogin Page in ASP.NET Pin
Parameswar Mala5-Mar-07 23:07
Parameswar Mala5-Mar-07 23:07 
AnswerRe: Login Page in ASP.NET Pin
badgrs5-Mar-07 23:16
badgrs5-Mar-07 23:16 
AnswerRe: Login Page in ASP.NET Pin
Vasudevan Deepak Kumar6-Mar-07 9:25
Vasudevan Deepak Kumar6-Mar-07 9:25 
QuestionHow do i do move columns in datagrid?????? Pin
www.Developerof.NET5-Mar-07 23:02
www.Developerof.NET5-Mar-07 23:02 
AnswerRe: How do i do move columns in datagrid?????? Pin
luckyve5-Mar-07 23:12
luckyve5-Mar-07 23:12 
AnswerRe: How do i do move columns in datagrid?????? Pin
badgrs5-Mar-07 23:12
badgrs5-Mar-07 23:12 
GeneralRe: How do i do move columns in datagrid?????? Pin
www.Developerof.NET5-Mar-07 23:28
www.Developerof.NET5-Mar-07 23:28 
GeneralRe: How do i do move columns in datagrid?????? Pin
luckyve6-Mar-07 0:58
luckyve6-Mar-07 0:58 
Questionhow to send and recieve mails Pin
praveenanand5-Mar-07 22:58
praveenanand5-Mar-07 22:58 
AnswerRe: how to send and recieve mails Pin
Haissam5-Mar-07 23:03
Haissam5-Mar-07 23:03 
AnswerRe: how to send and recieve mails Pin
Vasudevan Deepak Kumar6-Mar-07 9:25
Vasudevan Deepak Kumar6-Mar-07 9:25 
Questioninside the values in the Dropdownlist Pin
Oga M5-Mar-07 22:53
Oga M5-Mar-07 22:53 
AnswerRe: inside the values in the Dropdownlist Pin
Sandeep Akhare5-Mar-07 23:02
Sandeep Akhare5-Mar-07 23:02 
GeneralRe: inside the values in the Dropdownlist Pin
Oga M5-Mar-07 23:48
Oga M5-Mar-07 23:48 
GeneralRe: inside the values in the Dropdownlist Pin
Sandeep Akhare6-Mar-07 0:09
Sandeep Akhare6-Mar-07 0:09 

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.