Click here to Skip to main content
16,005,491 members
Home / Discussions / C#
   

C#

 
GeneralRe: Making parts of a panel transparent Pin
Heath Stewart7-Dec-04 14:16
protectorHeath Stewart7-Dec-04 14:16 
GeneralRe: Making parts of a panel transparent Pin
G.Ringbom8-Dec-04 1:45
G.Ringbom8-Dec-04 1:45 
GeneralRe: Making parts of a panel transparent Pin
Heath Stewart8-Dec-04 6:22
protectorHeath Stewart8-Dec-04 6:22 
GeneralRe: Making parts of a panel transparent Pin
G.Ringbom8-Dec-04 6:38
G.Ringbom8-Dec-04 6:38 
GeneralConsole Application problem...! Pin
QzRz7-Dec-04 8:09
QzRz7-Dec-04 8:09 
GeneralRe: Console Application problem...! Pin
Daniel Turini7-Dec-04 8:14
Daniel Turini7-Dec-04 8:14 
GeneralRe: Console Application problem...! Pin
QzRz7-Dec-04 8:16
QzRz7-Dec-04 8:16 
GeneralI can't get my codebehind to work Pin
bigtone787-Dec-04 6:44
bigtone787-Dec-04 6:44 
I can't get my codebehind to work. Here is the code behind code:
namespace nestedRepeaters
{ using System.Data;
using System.Data.Odbc;

public class nestedRepeater : System.Web.UI.Page
{ public System.Web.UI.WebControls.Repeater parentRepeater;

static void Main()
{
}

public void Page_Load(object sender, System.EventArgs e)
{
//Create the connection and DataAdapter for the Authors table.
string sConnString = "Dsn=mysqldb;Uid=bigtone78 ; Pwd=";
OdbcConnection cnn = new OdbcConnection(sConnString);
OdbcDataAdapter cmd1 = new OdbcDataAdapter("select * from questions",cnn);

//Create and fill the DataSet.
DataSet ds = new DataSet();
cmd1.Fill(ds,"questions");
//Insert code in step 4 of the next section here.
//Bind the Authors table to the parent Repeater control, and call DataBind.
parentRepeater.DataSource = ds.Tables["questions"];
Page.DataBind();

//Close the connection.
cnn.Close();
}
}
}


and here is where I call it in the aspx file:

<%@ Page language="c#" Codebehind="test1.aspx.cs" Debug="true" AutoEventWireup="false" Inherits="nestedRepeaters.nestedRepeater" %>
GeneralRe: I can't get my codebehind to work Pin
Dave Kreskowiak7-Dec-04 7:19
mveDave Kreskowiak7-Dec-04 7:19 
GeneralRe: I can't get my codebehind to work Pin
bigtone787-Dec-04 7:30
bigtone787-Dec-04 7:30 
GeneralRe: I can't get my codebehind to work Pin
Colin Angus Mackay7-Dec-04 12:01
Colin Angus Mackay7-Dec-04 12:01 
Generalicon not repainted on minimize of an overlaying window Pin
stefan houtz7-Dec-04 5:41
stefan houtz7-Dec-04 5:41 
GeneralRe: icon not repainted on minimize of an overlaying window Pin
Dave Kreskowiak7-Dec-04 7:14
mveDave Kreskowiak7-Dec-04 7:14 
GeneralRe: icon not repainted on minimize of an overlaying window Pin
stefan houtz7-Dec-04 23:12
stefan houtz7-Dec-04 23:12 
Generalsatellite software Pin
SESCO LIBYA7-Dec-04 4:19
SESCO LIBYA7-Dec-04 4:19 
GeneralRe: satellite software Pin
Daniel Turini7-Dec-04 4:33
Daniel Turini7-Dec-04 4:33 
GeneralRe: satellite software Pin
Dave Kreskowiak7-Dec-04 5:34
mveDave Kreskowiak7-Dec-04 5:34 
GeneralRe: satellite software Pin
SESCO Libya18-Dec-04 5:47
sussSESCO Libya18-Dec-04 5:47 
GeneralRe: satellite software Pin
Dave Kreskowiak8-Dec-04 15:02
mveDave Kreskowiak8-Dec-04 15:02 
GeneralRe: satellite software Pin
leppie27-Dec-04 10:51
leppie27-Dec-04 10:51 
GeneralRe: satellite software Pin
Dave Kreskowiak27-Dec-04 15:56
mveDave Kreskowiak27-Dec-04 15:56 
GeneralRe: satellite software Pin
John M. Drescher27-Dec-04 6:36
John M. Drescher27-Dec-04 6:36 
GeneralRe: satellite software Pin
Jesse Squire7-Dec-04 6:09
Jesse Squire7-Dec-04 6:09 
GeneralRe: satellite software Pin
Judah Gabriel Himango7-Dec-04 7:02
sponsorJudah Gabriel Himango7-Dec-04 7:02 
GeneralRe: satellite software Pin
Alex Korchemniy7-Dec-04 10:43
Alex Korchemniy7-Dec-04 10:43 

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.