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

ASP.NET

 
AnswerRe: How do I stop the Parent masterpage from performaing a refresh when the child masterpage's content placeholder fires a redirect causing flickering at the master page level. Pin
Guffa6-Aug-06 21:43
Guffa6-Aug-06 21:43 
GeneralRe: How do I stop the Parent masterpage from performaing a refresh when the child masterpage's content placeholder fires a redirect causing flickering at the master page level. Pin
RoahRash7-Aug-06 5:52
RoahRash7-Aug-06 5:52 
GeneralRe: How do I stop the Parent masterpage from performaing a refresh when the child masterpage's content placeholder fires a redirect causing flickering at the master page level. [modified] Pin
RoahRash7-Aug-06 11:00
RoahRash7-Aug-06 11:00 
AnswerRe: How do I stop the Parent masterpage from performaing a refresh when the child masterpage's content placeholder fires a redirect causing flickering at the master page level. Pin
Guffa7-Aug-06 13:25
Guffa7-Aug-06 13:25 
QuestionSOAP extension code not executing Pin
Leithaus6-Aug-06 9:03
Leithaus6-Aug-06 9:03 
Questioninserting data thru web forms Pin
Kunal P6-Aug-06 0:22
Kunal P6-Aug-06 0:22 
AnswerRe: inserting data thru web forms Pin
enjoycrack6-Aug-06 3:13
enjoycrack6-Aug-06 3:13 
AnswerRe: inserting data thru web forms Pin
blurMember6-Aug-06 16:14
blurMember6-Aug-06 16:14 
using System.Data.SqlClient; // don't forget this. Poke tongue | ;-P
<br />
    protected void btnSubmit1_Click(object sender, EventArgs e)<br />
    {<br />
public string sqlConn = ""; //ur connection<br />
        Conn = new SqlConnection(sqlConn);<br />
<br />
        a = TextBox1.Text;<br />
        b = TextBox2.Text<br />
<br />
        System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();<br />
        cmd.CommandType = System.Data.CommandType.Text;<br />
<br />
        cmd.CommandText = "INSERT yourTableName VALUES ('" + a + "' , '" + b + "')";<br />
        cmd.Connection = Conn;<br />
<br />
        Conn.Open();<br />
        cmd.ExecuteNonQuery();<br />
        Conn.Close();<br />
    }<br />


Wink | ;) I have that in my code. Hope it works.
Questionword documents Pin
Robske5-Aug-06 23:41
Robske5-Aug-06 23:41 
AnswerRe: word documents Pin
Mike Ellison6-Aug-06 5:08
Mike Ellison6-Aug-06 5:08 
Questionasp.net media player -not media server Pin
User 9625785-Aug-06 19:25
User 9625785-Aug-06 19:25 
QuestionWhere can i find AJAX Tutorials Pin
Kariem Soudy5-Aug-06 15:15
Kariem Soudy5-Aug-06 15:15 
AnswerRe: Where can i find AJAX Tutorials Pin
Ravi Bhavnani6-Aug-06 15:03
professionalRavi Bhavnani6-Aug-06 15:03 
QuestionNo, i need a reference - Re: Where can i find AJAX Tutorials Pin
Kariem Soudy6-Aug-06 20:52
Kariem Soudy6-Aug-06 20:52 
AnswerRe: No, i need a reference - Re: Where can i find AJAX Tutorials Pin
ravindradonkada7-Aug-06 7:27
ravindradonkada7-Aug-06 7:27 
QuestionImageButton and border attributes [modified] Pin
matthias s.5-Aug-06 8:26
matthias s.5-Aug-06 8:26 
AnswerRe: ImageButton and border attributes Pin
minhpc_bk7-Aug-06 15:38
minhpc_bk7-Aug-06 15:38 
GeneralRe: ImageButton and border attributes Pin
matthias s.7-Aug-06 22:37
matthias s.7-Aug-06 22:37 
GeneralRe: ImageButton and border attributes Pin
minhpc_bk8-Aug-06 0:02
minhpc_bk8-Aug-06 0:02 
GeneralRe: ImageButton and border attributes Pin
matthias s.8-Aug-06 0:19
matthias s.8-Aug-06 0:19 
GeneralRe: ImageButton and border attributes Pin
minhpc_bk8-Aug-06 0:28
minhpc_bk8-Aug-06 0:28 
QuestionDataset To Label (vs2005) Pin
NiPsTeRs5-Aug-06 5:41
NiPsTeRs5-Aug-06 5:41 
Questionbind data to two datalist controls on page load event Pin
Emapeter5-Aug-06 4:32
Emapeter5-Aug-06 4:32 
AnswerRe: bind data to two datalist controls on page load event Pin
Mike Ellison5-Aug-06 4:38
Mike Ellison5-Aug-06 4:38 
QuestionPrinting Data from Grid in html report format Pin
Sunny H5-Aug-06 4:24
Sunny H5-Aug-06 4:24 

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.