Soru Geçmişi
19.10.23 13:11
visual studıo 2015 te web desıgner da whıle dtareader ıle dbase degerlerı getırme problemı
Visual Studio 2015 web designerda <% icinde asp net ile while loop calışmıyor. Kullandığım dr1 değişkeni için de the name exıst curent context hatası veriyor. Bunu mvcye benzetmek istemiştim. Kod asağıdakı gibidir . Saygılarla. Nerde hata yapıyorum? Repeater, gridvıew, buildigstring veya literal kullanmak istemiyorum. while web designer ıcınde içinde çalısmalı . <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="onurty.aspx.cs" Inherits="JOIN_PROJEM.onurty" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <table> <% while dr1.read() { %> <tr> <td> Ürün Adı :</td> <td> <%=dr1("urunadi");%> </td> <td> <%=dr1("urunlinki");%> </td> </tr> <% } %> </table> </div> </form> </body> </html> yukarıda dr1 e hata alıyorum behınd code --------------- using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.IO; using System.Text; using System.Drawing; using System.Data.Common; using System.Data.OleDb; namespace JOIN_PROJEM { public partial class onurty : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { OleDbConnection connection = new OleDbConnection(ConfigurationManager.ConnectionStrings["constr"].ToString()); string query = "select * from urunler"; OleDbCommand dr1= new OleDbCommand(query, connection); dr1.ExecuteReader(); } } }
Ekleyen: misafir
Değiştiren: cevapsitesi
16.09.23 12:23
visual studıo 2015 te web desıgner da whıle dtareader ıle dbase degerlerı getırme problemı
vısual studıo 2015 web desıgnerda <% ıcınde asp net ıle whıle loop calısmıyor dr1 e the name exıst curent context hatası verıyort bunu mvc ye benzetmek ıstemıstım kod asagıdakı gıbıdır saygılarla nerde hata yapıyorum repeater grıdvıew buıldıgstrıng lıteral kullanmak ıstemıyorum whıle web desıgner ıcınde ıcınde calısmalı web desıgner <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="onurty.aspx.cs" Inherits="JOIN_PROJEM.onurty" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <table> <% while dr1.read() { %> <tr> <td> Ürün Adı :</td> <td> <%=dr1("urunadi");%> </td> <td> <%=dr1("urunlinki");%> </td> </tr> <% } %> </table> </div> </form> </body> </html> yukarıda dr1 e hata alıyorum behınd code --------------- using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.IO; using System.Text; using System.Drawing; using System.Data.Common; using System.Data.OleDb; namespace JOIN_PROJEM { public partial class onurty : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { OleDbConnection connection = new OleDbConnection(ConfigurationManager.ConnectionStrings["constr"].ToString()); string query = "select * from urunler"; OleDbCommand dr1= new OleDbCommand(query, connection); dr1.ExecuteReader(); } } }
Ekleyen: misafir
En fazla 3 eski durum gösterilir.