Click here to Skip to main content
15,891,655 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to change the color of Treeview text? Pin
meeram39524-Oct-09 1:39
meeram39524-Oct-09 1:39 
AnswerRe: How to change the color of Treeview text? Pin
Abhishek Sur24-Oct-09 7:21
professionalAbhishek Sur24-Oct-09 7:21 
AnswerRe: How to change the color of Treeview text? Pin
Bassam Saoud24-Oct-09 14:18
Bassam Saoud24-Oct-09 14:18 
QuestionLogin page when edit clicked in Gridview Pin
demouser74324-Oct-09 1:16
demouser74324-Oct-09 1:16 
AnswerRe: Login page when edit clicked in Gridview Pin
nagendrathecoder24-Oct-09 1:23
nagendrathecoder24-Oct-09 1:23 
GeneralRe: Login page when edit clicked in Gridview Pin
demouser74324-Oct-09 1:35
demouser74324-Oct-09 1:35 
GeneralRe: Login page when edit clicked in Gridview Pin
nagendrathecoder24-Oct-09 1:40
nagendrathecoder24-Oct-09 1:40 
GeneralRe: Login page when edit clicked in Gridview Pin
demouser74324-Oct-09 2:14
demouser74324-Oct-09 2:14 
Just a basic login like this

protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection Con = new SqlConnection(ConfigurationManager.AppSettings["sqlcon"]);
SqlCommand cmd = new SqlCommand();
cmd.Connection = Con;
string sql;
sql = "Select *from login where uname='" + TextBox1.Text + "' and pwd='" + TextBox2.Text + "'";
cmd.CommandText = sql;
Con.Open();
SqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
Response.Redirect("Default.aspx");
}
}
GeneralRe: Login page when edit clicked in Gridview Pin
nagendrathecoder24-Oct-09 2:33
nagendrathecoder24-Oct-09 2:33 
GeneralRe: Login page when edit clicked in Gridview Pin
sashidhar24-Oct-09 2:41
sashidhar24-Oct-09 2:41 
GeneralRe: Login page when edit clicked in Gridview Pin
sashidhar24-Oct-09 1:59
sashidhar24-Oct-09 1:59 
AnswerRe: Login page when edit clicked in Gridview Pin
demouser74324-Oct-09 4:14
demouser74324-Oct-09 4:14 
GeneralRe: Login page when edit clicked in Gridview Pin
demouser74325-Oct-09 19:17
demouser74325-Oct-09 19:17 
Questioncheck box in datagrid Pin
suzzain23-Oct-09 20:36
suzzain23-Oct-09 20:36 
AnswerRe: check box in datagrid Pin
Christian Graus23-Oct-09 22:33
protectorChristian Graus23-Oct-09 22:33 
Questionscript menu login [modified] Pin
KhandelwalA23-Oct-09 20:31
KhandelwalA23-Oct-09 20:31 
AnswerRe: script menu login Pin
sashidhar23-Oct-09 20:48
sashidhar23-Oct-09 20:48 
GeneralRe: script menu login Pin
KhandelwalA23-Oct-09 20:52
KhandelwalA23-Oct-09 20:52 
GeneralRe: script menu login Pin
sashidhar23-Oct-09 21:06
sashidhar23-Oct-09 21:06 
AnswerRe: script menu login Pin
Christian Graus23-Oct-09 22:32
protectorChristian Graus23-Oct-09 22:32 
Questionnot getting .value property of any asp.net textbox in java script Pin
bhavnvyas23-Oct-09 20:19
bhavnvyas23-Oct-09 20:19 
AnswerRe: not getting .value property of any asp.net textbox in java script Pin
Christian Graus23-Oct-09 22:36
protectorChristian Graus23-Oct-09 22:36 
GeneralRe: not getting .value property of any asp.net textbox in java script Pin
bhavnvyas23-Oct-09 23:25
bhavnvyas23-Oct-09 23:25 
Questionhow to hide the query string in url Pin
sarang_k23-Oct-09 19:54
sarang_k23-Oct-09 19:54 
AnswerRe: how to hide the query string in url Pin
Christian Graus23-Oct-09 19:54
protectorChristian Graus23-Oct-09 19:54 

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.