[ADVANCED-DOTNET] a problem with auto fit the height of an iframe

2008-09-15 Thread lior levi
Hi, I have a problem with auto fit the height of an iframe. Can I use a xmlhttprequest and load the responseText into a div? instead of using iframe? in that way the div can shrink and grow with the content. someone have a sample of something like this? Thanks ==

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread John Warner
Let's don't give up on Efran yet. If he is able to actually just move us to a new list serve server then all is like it has been just a new email address for posts (and to add to your white list on the spam filter). John Warner > -Original Message- > From: Discussion of advanced .NET t

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread Peter Ritchie
I think the reason people use this list is because it isn't based on a web (HTML) interface. There's already numereous web-based sites that cover the topics discussed on this list. If a web-based site were acceptable to the subscribers of this list, they'd already be using one of the existing sit

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread Per Bolmstedt
On Mon, 15 Sep 2008 13:34:16 -0500, Mike Andrews <[EMAIL PROTECTED]> wrote: > Additionally, this format is more personal in that the messages > appear in "your" inbox (something that I'm sure all of us check > quite regularly throughout the day) instead of visiting a website. Well, there's always

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread Mike Andrews
I really must disagree that it would be a perfect replacement/alternative. I took a look at it and it's a nice site and I'm sure I'll visit it from time to time and maybe even ask/answer a question or two. Nevertheless, there is too much "noise" on that site; too many distractions that take away th

Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread lior levi
Same problem, I see only data from SqlDataSourceActions. protected void FormView1_ItemCreated(object sender, EventArgs e) { if (FormView1.CurrentMode == FormViewMode.Insert) { DropDownList dropDownList1; dropDownList1 = (DropDownList)FormView1.FindC

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread Chris Gallucci
>>Forget that. Let's just tag our posts "developmentor-advanced-dotnet" at >>. =] I was thinking the same thing. I think stackoverflow would be a perfect alternate host. Chris Gallucci === This list is hosted by DevelopMentorĀ® http://www

Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread Graf, Jim
yes -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of lior levi Sent: Monday, September 15, 2008 1:06 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control Th

Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-15 Thread Per Bolmstedt
On Mon, 8 Sep 2008 17:24:27 +0200, Efran Cobisi <[EMAIL PROTECTED]> wrote: > I am worried about the retirement of our lists as most of us are. > Therefore, I am making arrangements with Rich in order to move > all of the lists to my servers and keep them alive. Forget that. Let's just tag our pos

Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread lior levi
Thanks jim, do you mean something like this? dropDownList1.Items.Insert(0, new ListItem("Add New2", "999")); nonworking working also. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Graf, Jim Sent: Monday, September 15, 2008 8:53 PM To

Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread Graf, Jim
You have to add after the bind and do it every time the list is rebound -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Graf, Jim Sent: Monday, September 15, 2008 12:50 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DO

Re: [ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread Graf, Jim
Look at the insert method -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of lior levi Sent: Monday, September 15, 2008 12:31 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] problem to insert value in dropdownlist on

[ADVANCED-DOTNET] problem to insert value in dropdownlist on formView control

2008-09-15 Thread lior levi
Hello, I'm using the SqlDataSource to insert value in dropdownlist, but i want to add a -- Add New -- at the end of the list, but can't find a way to make it. It works very well if I delete the SqlDataSource of the DropDownlist... maybe the inserted item is overwrited by the SqlDataSource !!?