Click here to Skip to main content
15,912,400 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Is it possible to add virtual controls to the DOM tree? Pin
howardjr19-Dec-06 11:53
howardjr19-Dec-06 11:53 
GeneralRe: Is it possible to add virtual controls to the DOM tree? Pin
George L. Jackson19-Dec-06 13:39
George L. Jackson19-Dec-06 13:39 
GeneralRe: Is it possible to add virtual controls to the DOM tree? Pin
howardjr19-Dec-06 15:53
howardjr19-Dec-06 15:53 
Questionwebsite development in different language.... Pin
Nagraj Naik19-Dec-06 1:05
Nagraj Naik19-Dec-06 1:05 
AnswerRe: website development in different language.... Pin
Bradml19-Dec-06 1:17
Bradml19-Dec-06 1:17 
QuestionCrystal Reports XI Pin
jagmit2019-Dec-06 0:50
jagmit2019-Dec-06 0:50 
QuestionComboBox custom web/server-side control - where's the data? Pin
howardjr18-Dec-06 18:29
howardjr18-Dec-06 18:29 
AnswerRe: ComboBox custom web/server-side control - where's the data? Pin
howardjr19-Dec-06 15:52
howardjr19-Dec-06 15:52 
Using the following code I can see my data:

Dim CBX1 As cwcComboBox.cwcComboBox = Me.cwcComboBox1
Dim CBX1Value As String
Dim CBX1Values As String()

CBX1Value = CBX1.Page.Request.Params.Get(CBX1.ID)
CBX1Values = CBX1.Page.Request.Params.GetValues(CBX1.ID)

CBX1Value = "Three,3", CBX1Values(0)="Three", and CBX1Values(1)="3"

So the data is there. However, when I try to access the data the "correct" way by declaring a LoadPostData function as follows:

Public Function LoadPostData( ByVal Key As String, ByVal PostData As NameValueCollection ) As Boolean _
	Implements IPostBackDataHandler.LoadPostData
		:
End Function

The compiler says that IPostBackDataHandler is not implemented by this class, but my custom component inherits from the ListBox webcontrol. So at the top of my class, after the inherits statement, I tried using:

Implements System.Web.UI.IPostBackDataHandler

But the compiler says its already implemented by the listbox base class, which seems to disagree with the earlier compiler error!

Anyone know what's going on with this?
GeneralRe: ComboBox custom web/server-side control - where's the data? Pin
howardjr19-Dec-06 16:28
howardjr19-Dec-06 16:28 
GeneralRe: ComboBox custom web/server-side control - where's the data? Pin
howardjr20-Dec-06 10:16
howardjr20-Dec-06 10:16 
QuestionHow do I left align text within a span tag Pin
howardjr18-Dec-06 10:53
howardjr18-Dec-06 10:53 
AnswerRe: How do I left align text within a span tag Pin
George L. Jackson18-Dec-06 12:38
George L. Jackson18-Dec-06 12:38 
GeneralRe: How do I left align text within a span tag Pin
howardjr18-Dec-06 13:56
howardjr18-Dec-06 13:56 
GeneralRe: How do I left align text within a span tag Pin
George L. Jackson18-Dec-06 14:04
George L. Jackson18-Dec-06 14:04 
GeneralRe: How do I left align text within a span tag Pin
howardjr18-Dec-06 18:16
howardjr18-Dec-06 18:16 
GeneralRe: How do I left align text within a span tag Pin
George L. Jackson19-Dec-06 1:54
George L. Jackson19-Dec-06 1:54 
GeneralRe: How do I left align text within a span tag Pin
howardjr19-Dec-06 5:54
howardjr19-Dec-06 5:54 
QuestionIE with JS Pin
militiaware16-Dec-06 22:47
militiaware16-Dec-06 22:47 
JokeRe: IE with JS Pin
Bradml16-Dec-06 23:30
Bradml16-Dec-06 23:30 
GeneralRe: IE with JS Pin
militiaware16-Dec-06 23:43
militiaware16-Dec-06 23:43 
GeneralRe: IE with JS Pin
Bradml17-Dec-06 0:06
Bradml17-Dec-06 0:06 
GeneralRe: IE with JS Pin
JimmyRopes17-Dec-06 17:42
professionalJimmyRopes17-Dec-06 17:42 
AnswerRe: IE with JS Pin
Guffa17-Dec-06 0:10
Guffa17-Dec-06 0:10 
GeneralRe: IE with JS Pin
militiaware17-Dec-06 0:14
militiaware17-Dec-06 0:14 
AnswerRe: IE with JS Pin
Guffa17-Dec-06 6:18
Guffa17-Dec-06 6:18 

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.