Showing posts with label group. Show all posts
Showing posts with label group. Show all posts

Monday, March 26, 2012

This group has 0 topics. Click here to post the first message!

Wow! Did someone hack us or google is doing some clean-up?
Anyway, I don't see a single message in
microsoft.public.dotnet.framework.aspnetMust be a temp glitch.
I get 356,000 messages when I search for "a"
in microsoft.public.dotnet.framework.aspnet
Your message saying that you
"don't see a single message" is there, btw. :-)
Juan T. Llibre
ASP.NET MVP
===========
"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106588619.966334.120670@.z14g2000cwz.googlegroups.com...
> Wow! Did someone hack us or google is doing some clean-up?
> Anyway, I don't see a single message in
> microsoft.public.dotnet.framework.aspnet
>
This is a newsgroup. Google is a web search engine. Google can do nothing to
this newsgroup. It sounds like you're using a browser interface to view
these newsgroups. In that case, there is something wrong with the browser
interface you're using. Try using Outlook Express newsreader instead.
msnews.microsoft.com is the NNTP server.
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106588619.966334.120670@.z14g2000cwz.googlegroups.com...
> Wow! Did someone hack us or google is doing some clean-up?
> Anyway, I don't see a single message in
> microsoft.public.dotnet.framework.aspnet
>
I use google groups beta. I noticed that when I search I actually see
those good old several hundred thousand messages but when I browsed
google saw the group empty. A colleague of mine confirmed this
The horse's mouth is always better than recycled. Use an NNTP client, such
as Microsoft Outlook Newsreader, and go to msnews.microsoft.com for all the
public Microsoft newsgroups.
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106669524.796984.11550@.z14g2000cwz.googlegroups.com...
>I use google groups beta. I noticed that when I search I actually see
> those good old several hundred thousand messages but when I browsed
> google saw the group empty. A colleague of mine confirmed this
>
Also, as this is not a Google newsgroup, you're not going to find any help
using Google here.
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106669524.796984.11550@.z14g2000cwz.googlegroups.com...
>I use google groups beta. I noticed that when I search I actually see
> those good old several hundred thousand messages but when I browsed
> google saw the group empty. A colleague of mine confirmed this
>
OK, sorry for cross posting
But I got quire upset for the priceless archive, but as long as it is
OK I feel secure ;-)
But I didn't understand that about the horse's mouth

This group has 0 topics. Click here to post the first message!

Wow! Did someone hack us or google is doing some clean-up?

Anyway, I don't see a single message in
microsoft.public.dotnet.framework.aspnetMust be a temp glitch.

I get 356,000 messages when I search for "a"
in microsoft.public.dotnet.framework.aspnet

Your message saying that you
"don't see a single message" is there, btw. :-)

Juan T. Llibre
ASP.NET MVP
===========
"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106588619.966334.120670@.z14g2000cwz.googlegr oups.com...
> Wow! Did someone hack us or google is doing some clean-up?
> Anyway, I don't see a single message in
> microsoft.public.dotnet.framework.aspnet
This is a newsgroup. Google is a web search engine. Google can do nothing to
this newsgroup. It sounds like you're using a browser interface to view
these newsgroups. In that case, there is something wrong with the browser
interface you're using. Try using Outlook Express newsreader instead.
msnews.microsoft.com is the NNTP server.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106588619.966334.120670@.z14g2000cwz.googlegr oups.com...
> Wow! Did someone hack us or google is doing some clean-up?
> Anyway, I don't see a single message in
> microsoft.public.dotnet.framework.aspnet
I use google groups beta. I noticed that when I search I actually see
those good old several hundred thousand messages but when I browsed
google saw the group empty. A colleague of mine confirmed this
The horse's mouth is always better than recycled. Use an NNTP client, such
as Microsoft Outlook Newsreader, and go to msnews.microsoft.com for all the
public Microsoft newsgroups.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106669524.796984.11550@.z14g2000cwz.googlegro ups.com...
>I use google groups beta. I noticed that when I search I actually see
> those good old several hundred thousand messages but when I browsed
> google saw the group empty. A colleague of mine confirmed this
Also, as this is not a Google newsgroup, you're not going to find any help
using Google here.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Stefan Kiryazov" <chefo@.bulgaria.com> wrote in message
news:1106669524.796984.11550@.z14g2000cwz.googlegro ups.com...
>I use google groups beta. I noticed that when I search I actually see
> those good old several hundred thousand messages but when I browsed
> google saw the group empty. A colleague of mine confirmed this
OK, sorry for cross posting

But I got quire upset for the priceless archive, but as long as it is
OK I feel secure ;-)
But I didn't understand that about the horse's mouth

Saturday, March 24, 2012

this.Controls.Add(ImageButton[i]) exception

Morning -

I am hoping somebody from this group can help me out here...

I have been trying to add an array of ImageButtons to my WebForm however I
keep getting an exception that I can't seem to find an answer for any where
on the net.

Any help in the right direction would be greatly appreciated. If more
code/source is need please let me know and I will post more.

thx -

CJ

<!-- Code here>
...
ImageButton [] ImageArray = new ImageButton[FileName.Length];
...
for (int i = 0; i < FileName.Length; i++)
{
ImageArray[i]= new ImageButton();
...
this.Controls.Add(ImageArray[i]);
}
...

<HTML>
...
<FORM id="display" method="post" runat="server">
...
</FORM>
</HTML
Exception Details: System.Web.HttpException: Control 'Preview1' of type
'ImageButton' must be placed inside a form tag with runat=server.

Stack Trace:

[HttpException (0x80004005): Control 'Preview1' of type 'ImageButton' must
be placed inside a form tag with runat=server.]
System.Web.UI.Page.VerifyRenderingInServerForm(Con trol control)
System.Web.UI.WebControls.ImageButton.AddAttribute sToRender(HtmlTextWriter
writer)
System.Web.UI.WebControls.WebControl.RenderBeginTa g(HtmlTextWriter
writer)
System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
System.Web.UI.Control.RenderChildren(HtmlTextWrite r writer)
System.Web.UI.Control.Render(HtmlTextWriter writer)
System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
System.Web.UI.Page.ProcessRequestMain()

<end code --Hi CJ,

If you add ImageButton to form rather than page, the
ImageButton will be placed inside form tag:

HtmlForm form = (HtmlForm)this.FindControl("Form1");

//...
form.Controls.Add(ImageArray[i]);
//...

Hope it's helpful to you.

Elton Wang

elton_wang@.hotmail.com

>--Original Message--
>Morning -
>I am hoping somebody from this group can help me out
here...
>I have been trying to add an array of ImageButtons to my
WebForm however I
>keep getting an exception that I can't seem to find an
answer for any where
>on the net.
>Any help in the right direction would be greatly
appreciated. If more
>code/source is need please let me know and I will post
more.
>thx -
>CJ
><!-- Code here>
>...
>ImageButton [] ImageArray = new ImageButton
[FileName.Length];
>...
>for (int i = 0; i < FileName.Length; i++)
> {
> ImageArray[i]= new ImageButton();
> ...
> this.Controls.Add(ImageArray[i]);
> }
>...
><HTML>
>...
> <FORM id="display" method="post" runat="server">
> ...
> </FORM>
></HTML>
>Exception Details: System.Web.HttpException:
Control 'Preview1' of type
>'ImageButton' must be placed inside a form tag with
runat=server.
>Stack Trace:
>
>[HttpException (0x80004005): Control 'Preview1' of
type 'ImageButton' must
>be placed inside a form tag with runat=server.]
> System.Web.UI.Page.VerifyRenderingInServerForm(Con trol
control)
System.Web.UI.WebControls.ImageButton.AddAttribute sToRender
(HtmlTextWriter
>writer)
> System.Web.UI.WebControls.WebControl.RenderBeginTa g
(HtmlTextWriter
>writer)
> System.Web.UI.WebControls.WebControl.Render
(HtmlTextWriter writer)
> System.Web.UI.Control.RenderControl(HtmlTextWriter
writer)
> System.Web.UI.Control.RenderChildren(HtmlTextWrite r
writer)
> System.Web.UI.Control.Render(HtmlTextWriter writer)
> System.Web.UI.Control.RenderControl(HtmlTextWriter
writer)
> System.Web.UI.Page.ProcessRequestMain()
><end code -->
>
>.
Hi,

You need to give some part of the source code and the error description.
Then only we can figure out.

Prakash.C

"Elton Wang" wrote:

> Hi CJ,
> If you add ImageButton to form rather than page, the
> ImageButton will be placed inside form tag:
> HtmlForm form = (HtmlForm)this.FindControl("Form1");
> //...
> form.Controls.Add(ImageArray[i]);
> //...
> Hope it's helpful to you.
> Elton Wang
> elton_wang@.hotmail.com
> >--Original Message--
> >Morning -
> >I am hoping somebody from this group can help me out
> here...
> >I have been trying to add an array of ImageButtons to my
> WebForm however I
> >keep getting an exception that I can't seem to find an
> answer for any where
> >on the net.
> >Any help in the right direction would be greatly
> appreciated. If more
> >code/source is need please let me know and I will post
> more.
> >thx -
> >CJ
> ><!-- Code here>
> >...
> >ImageButton [] ImageArray = new ImageButton
> [FileName.Length];
> >...
> >for (int i = 0; i < FileName.Length; i++)
> > {
> > ImageArray[i]= new ImageButton();
> > ...
> > this.Controls.Add(ImageArray[i]);
> > }
> >...
> ><HTML>
> >...
> > <FORM id="display" method="post" runat="server">
> > ...
> > </FORM>
> ></HTML>
> >Exception Details: System.Web.HttpException:
> Control 'Preview1' of type
> >'ImageButton' must be placed inside a form tag with
> runat=server.
> >Stack Trace:
> >[HttpException (0x80004005): Control 'Preview1' of
> type 'ImageButton' must
> >be placed inside a form tag with runat=server.]
> > System.Web.UI.Page.VerifyRenderingInServerForm(Con trol
> control)
> System.Web.UI.WebControls.ImageButton.AddAttribute sToRender
> (HtmlTextWriter
> >writer)
> > System.Web.UI.WebControls.WebControl.RenderBeginTa g
> (HtmlTextWriter
> >writer)
> > System.Web.UI.WebControls.WebControl.Render
> (HtmlTextWriter writer)
> > System.Web.UI.Control.RenderControl(HtmlTextWriter
> writer)
> > System.Web.UI.Control.RenderChildren(HtmlTextWrite r
> writer)
> > System.Web.UI.Control.Render(HtmlTextWriter writer)
> > System.Web.UI.Control.RenderControl(HtmlTextWriter
> writer)
> > System.Web.UI.Page.ProcessRequestMain()
> ><end code -->
> >.