Hi there, im kinda new to ASP.net
here the prob, i want to retrieve data from database but inside the table that i create. Normally <script> xtreme </script> i put it on the upper part, but now i want to split it up.
[highlight=asp]
<script language=c# runat=server debug=true>
void Page_Load (object sender, EventArgs e)
{
*//retrieve data but now the placing takes prob
*
Response.Write("haha"); -> is executed i saw the result
}
</script>
///////////////////////////
now inside the body..
//////////////////////////
<html>
*//i got table create here. i want to put the data that i retrieve inside here
*
<script> Response.Write("haha"); </script> -> got no result at all
*
</html>
[/highlight]
if i put <%Response.Write("haha");%> it works!!
guys any idea?
here the prob, i want to retrieve data from database but inside the table that i create. Normally <script> xtreme </script> i put it on the upper part, but now i want to split it up.
[highlight=asp]
<script language=c# runat=server debug=true>
void Page_Load (object sender, EventArgs e)
{
*//retrieve data but now the placing takes prob
*
Response.Write("haha"); -> is executed i saw the result
}
</script>
///////////////////////////
now inside the body..
//////////////////////////
<html>
*//i got table create here. i want to put the data that i retrieve inside here
*
<script> Response.Write("haha"); </script> -> got no result at all
*
</html>
[/highlight]
if i put <%Response.Write("haha");%> it works!!
guys any idea?
Last edited by a moderator: