Click here to Skip to main content
15,890,741 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Send SMS By WebApplication Or Web Site Pin
Christian Graus27-Feb-08 22:34
protectorChristian Graus27-Feb-08 22:34 
GeneralRe: Send SMS By WebApplication Or Web Site Pin
Vasudevan Deepak Kumar28-Feb-08 4:06
Vasudevan Deepak Kumar28-Feb-08 4:06 
QuestionHi friends, I need a code to generate a balloon tooltip text for server controls? Pin
G Nathan27-Feb-08 21:42
G Nathan27-Feb-08 21:42 
GeneralRe: Hi friends, I need a code to generate a balloon tooltip text for server controls? Pin
N a v a n e e t h27-Feb-08 21:47
N a v a n e e t h27-Feb-08 21:47 
QuestionRe: Hi friends, I need a code to generate a balloon tooltip text for server controls? Pin
G Nathan27-Feb-08 22:05
G Nathan27-Feb-08 22:05 
GeneralRe: Hi friends, I need a code to generate a balloon tooltip text for server controls? Pin
Christian Graus27-Feb-08 22:24
protectorChristian Graus27-Feb-08 22:24 
GeneralRe: Hi friends, I need a code to generate a balloon tooltip text for server controls? Pin
Nilesh Hapse28-Feb-08 3:10
Nilesh Hapse28-Feb-08 3:10 
GeneralDynamically generated repeaters and the 'AddAt' method Pin
Hendrik Debedts27-Feb-08 21:30
Hendrik Debedts27-Feb-08 21:30 
I want to use the 'AddAt' method with a dynamically generated repeater. It doesn't work. It's just like the whole repeater has only one item because i only can add an item 'before' or 'after' the whole repeater.

I use this ItemTemplate class

Public Class clsNavigatieDetail1ItemTemplate
Implements ITemplate

Private mboOpgevuld As Boolean
Private moRepeater As Repeater
Private msNavigatieDetail1 As String

Public Sub InstantiateIn(ByVal container As System.Web.UI.Control) Implements System.Web.UI.ITemplate.InstantiateIn

Try
If Not mboOpgevuld Then
mboOpgevuld = True

Dim oDataTable As DataTable
oDataTable = CType(moRepeater.DataSource, DataTable)

For i As Integer = 0 To oDataTable.Rows.Count - 1
Dim sItem As String
sItem = "<div class='NavigatieMenuDetail1'>"
sItem += "<div class='divMenuCell3' class='NavigatieMenuDetail1'>&nbsp;</div>"
sItem += "<div class='divMenuCell4'>"
sItem += "<a href='javascript:doPostback();setNavigatieDetail1 (" + oDataTable.Rows(i)("IDSubNavigatie1").ToString + ");'>"
sItem += oDataTable.Rows(i)("OmschrijvingSubNavigatie")
sItem += "</a>"
sItem += "</div></div>"

Dim oLiteralControl As New LiteralControl
oLiteralControl.Text = sItem
container.Controls.Add(oLiteralControl)
Next
End If
Catch
End Try
End Sub

Public Sub New(ByVal oRepeater As Repeater, ByVal sNavigatieDetail1 As String)
mboOpgevuld = False
moRepeater = oRepeater
msNavigatieDetail1 = sNavigatieDetail1
End Sub
End Class
GeneralWeb Custom Controls - Problem Pin
Darthmoose27-Feb-08 20:45
Darthmoose27-Feb-08 20:45 
GeneralRe: Web Custom Controls - Problem Pin
Christian Graus27-Feb-08 21:10
protectorChristian Graus27-Feb-08 21:10 
GeneralRe: Web Custom Controls - Problem Pin
Darthmoose27-Feb-08 21:44
Darthmoose27-Feb-08 21:44 
GeneralRe: Web Custom Controls - Problem Pin
Christian Graus27-Feb-08 21:52
protectorChristian Graus27-Feb-08 21:52 
GeneralRe: Web Custom Controls - Problem Pin
Darthmoose27-Feb-08 21:59
Darthmoose27-Feb-08 21:59 
GeneralRe: Web Custom Controls - Problem Pin
Christian Graus27-Feb-08 22:23
protectorChristian Graus27-Feb-08 22:23 
GeneralReading from web.config Pin
samerh27-Feb-08 20:43
samerh27-Feb-08 20:43 
GeneralRe: Reading from web.config Pin
Christian Graus27-Feb-08 21:09
protectorChristian Graus27-Feb-08 21:09 
GeneralRe: Reading from web.config Pin
samerh27-Feb-08 21:16
samerh27-Feb-08 21:16 
GeneralRe: Reading from web.config Pin
Christian Graus27-Feb-08 21:24
protectorChristian Graus27-Feb-08 21:24 
GeneralRe: Reading from web.config Pin
samerh27-Feb-08 21:35
samerh27-Feb-08 21:35 
GeneralRe: Reading from web.config Pin
Christian Graus27-Feb-08 21:54
protectorChristian Graus27-Feb-08 21:54 
GeneralEnglish Dictionary in asp.net (urgent!) Pin
Milind Panchal27-Feb-08 20:27
Milind Panchal27-Feb-08 20:27 
GeneralRe: English Dictionary in asp.net (urgent!) Pin
Christian Graus27-Feb-08 20:30
protectorChristian Graus27-Feb-08 20:30 
GeneralRe: English Dictionary in asp.net (urgent!) Pin
Vasudevan Deepak Kumar29-Feb-08 19:27
Vasudevan Deepak Kumar29-Feb-08 19:27 
GeneralValue from ASP.NET AJAX ModalPopUpExtender Pin
Syed Ali Raza27-Feb-08 20:15
Syed Ali Raza27-Feb-08 20:15 
GeneralRe: Value from ASP.NET AJAX ModalPopUpExtender Pin
Laddie28-Feb-08 19:48
Laddie28-Feb-08 19:48 

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.