Click here to Skip to main content
15,899,314 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Send SMS Pin
minhpc_bk4-Oct-06 18:54
minhpc_bk4-Oct-06 18:54 
AnswerRe: Send SMS Pin
Exelioindia4-Oct-06 21:48
Exelioindia4-Oct-06 21:48 
QuestionHow to close a window ? Pin
cheeken2u4-Oct-06 17:56
cheeken2u4-Oct-06 17:56 
AnswerRe: How to close a window ? Pin
Sushant Duggal4-Oct-06 18:09
Sushant Duggal4-Oct-06 18:09 
GeneralRe: How to close a window ? [modified] Pin
cheeken2u4-Oct-06 18:38
cheeken2u4-Oct-06 18:38 
GeneralRe: How to close a window ? Pin
Sushant Duggal4-Oct-06 20:39
Sushant Duggal4-Oct-06 20:39 
GeneralRe: How to close a window ? Pin
cheeken2u4-Oct-06 21:04
cheeken2u4-Oct-06 21:04 
QuestionRepeater DataSource. This is driving me crazy. Pin
shapper4-Oct-06 15:38
shapper4-Oct-06 15:38 
Hello,

I created a Repeater at runtime with an AccessDataSource.Everything Works fine!

Now I need to use the same repeater but with a DataSource created in my VB.Net code.

I created a DataView but the Repeater doesn't show anything!
I don't get any error so I have no idea what is going on.

This is my function which creates the datasource which in this moment has only one record:

Function DataSource() As ICollection

' Define channels data table
Dim dt As DataTable

' Create channels data table
dt = New DataTable
dt.Columns.Add(New DataColumn("ChannelId", GetType(String)))
dt.Columns.Add(New DataColumn("ChannelName", GetType(String)))

' Add news channel data row
Dim dr As DataRow
dr = dt.NewRow
dr(0) = "News"
dr(1) = "Noticias"
dt.Rows.Add(dr)

' Return RSS channel dataview
DataSource = New DataView(dt)

End Function

Could someone please help me out?

Thanks,
Miguel
AnswerRe: Repeater DataSource. This is driving me crazy. Pin
minhpc_bk4-Oct-06 18:52
minhpc_bk4-Oct-06 18:52 
GeneralRe: Repeater DataSource. This is driving me crazy. Pin
shapper5-Oct-06 4:18
shapper5-Oct-06 4:18 
GeneralRe: Repeater DataSource. This is driving me crazy. Pin
shapper5-Oct-06 4:24
shapper5-Oct-06 4:24 
QuestionHow to keep track on online users?!! URGENT Pin
Basheer_Nass4-Oct-06 15:22
Basheer_Nass4-Oct-06 15:22 
AnswerRe: How to keep track on online users?!! URGENT Pin
Sushant Duggal4-Oct-06 18:23
Sushant Duggal4-Oct-06 18:23 
GeneralRe: How to keep track on online users?!! URGENT Pin
Basheer_Nass5-Oct-06 8:19
Basheer_Nass5-Oct-06 8:19 
QuestionList Records Pin
shapper4-Oct-06 13:34
shapper4-Oct-06 13:34 
AnswerRe: List Records Pin
Mike Ellison4-Oct-06 14:14
Mike Ellison4-Oct-06 14:14 
QuestionOdd IE performance problem, how to go about diagnosing...? Pin
Member 964-Oct-06 13:10
Member 964-Oct-06 13:10 
AnswerRe: Odd IE performance problem, how to go about diagnosing...? Pin
Mike Ellison4-Oct-06 14:16
Mike Ellison4-Oct-06 14:16 
GeneralRe: Odd IE performance problem, how to go about diagnosing...? Pin
Member 964-Oct-06 16:38
Member 964-Oct-06 16:38 
AnswerRe: Odd IE performance problem, how to go about diagnosing...? Pin
Edbert P4-Oct-06 17:05
Edbert P4-Oct-06 17:05 
Questionreturning values from server to client Pin
Mallikarjun.B4-Oct-06 12:04
Mallikarjun.B4-Oct-06 12:04 
AnswerRe: returning values from server to client Pin
Guffa4-Oct-06 12:54
Guffa4-Oct-06 12:54 
GeneralRe: returning values from server to client Pin
Mallikarjun.B4-Oct-06 13:02
Mallikarjun.B4-Oct-06 13:02 
AnswerRe: returning values from server to client Pin
Guffa4-Oct-06 20:52
Guffa4-Oct-06 20:52 
QuestionRich Text control Pin
Sreenath Madyastha4-Oct-06 10:12
Sreenath Madyastha4-Oct-06 10:12 

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.