473,322 Members | 1,671 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Knowledge base is MISSING THE FIX for validators problem

I'm having the problem described in KB article 822734. You can see it
at this URL: http://support.microsoft.com/default...b;en-us;822734

In the article it says I can get the fix by "clicking on the download
link later in this article." But there _is_ no download link later in
the article.

I've tried working around the problem, by parsing through every
control in my ASP.NET page, seeing if it's a BaseValidator, checking
if it's in the Validators collection, and if not putting it there, but
this cuases other weird problems. (For instance, it for some reason
disables any buttons that have CausesValidation set to false. I have
no idea why.) The code I used to do this is below.

Is there anyone here who knows where I can get the fix? Is it
somewhere on that web site and I just can't find it?

Sean

protected void FixBrokenValidators(Control _parentControl)
{
if(_parentControl is BaseValidator &&
!Validators.Contains((BaseValidator) _parentControl))
{
Validators.Add((BaseValidator) _parentControl);
}

foreach(Control childControl in _parentControl.Controls)
{
FixBrokenValidators(childControl);
}
}
Nov 18 '05 #1
4 1169
Read more carefully "Resolution" Section

George.

"Sean" <mc******@efn.org> wrote in message
news:9f**************************@posting.google.c om...
I'm having the problem described in KB article 822734. You can see it
at this URL: http://support.microsoft.com/default...b;en-us;822734
In the article it says I can get the fix by "clicking on the download
link later in this article." But there _is_ no download link later in
the article.

I've tried working around the problem, by parsing through every
control in my ASP.NET page, seeing if it's a BaseValidator, checking
if it's in the Validators collection, and if not putting it there, but
this cuases other weird problems. (For instance, it for some reason
disables any buttons that have CausesValidation set to false. I have
no idea why.) The code I used to do this is below.

Is there anyone here who knows where I can get the fix? Is it
somewhere on that web site and I just can't find it?

Sean

protected void FixBrokenValidators(Control _parentControl)
{
if(_parentControl is BaseValidator &&
!Validators.Contains((BaseValidator) _parentControl))
{
Validators.Add((BaseValidator) _parentControl);
}

foreach(Control childControl in _parentControl.Controls)
{
FixBrokenValidators(childControl);
}
}

Nov 18 '05 #2
I did read the resolution section; that's the part I quoted in my
original post -- the part that says to download from the link later in
the article, when there is in fact no link later in the article.

(There's a link shortly after that, but it's not for the patch, it's
just a contact page for Microsoft. Perhaps you assumed that was the
link for downloading the patch and thought I'd missed it?)

Sean

"George Ter-Saakov" <no****@hotmail.com> wrote in message news:<#n**************@TK2MSFTNGP12.phx.gbl>...
Read more carefully "Resolution" Section

George.

"Sean" <mc******@efn.org> wrote in message
news:9f**************************@posting.google.c om...
I'm having the problem described in KB article 822734. You can see it
at this URL:

http://support.microsoft.com/default...b;en-us;822734

In the article it says I can get the fix by "clicking on the download
link later in this article." But there _is_ no download link later in
the article.

Nov 18 '05 #3
Can any of the MSFT people here tell me if there's a way I can report
this KB page with the missing download without having to go through
all the BS of signing up for passport and jumping through hoops just
to try and do a favor and report this?

Sean
mc******@efn.org (Sean) wrote in message news:<9f**************************@posting.google. com>...
I did read the resolution section; that's the part I quoted in my
original post -- the part that says to download from the link later in
the article, when there is in fact no link later in the article.

(There's a link shortly after that, but it's not for the patch, it's
just a contact page for Microsoft. Perhaps you assumed that was the
link for downloading the patch and thought I'd missed it?)

Sean

"George Ter-Saakov" <no****@hotmail.com> wrote in message news:<#n**************@TK2MSFTNGP12.phx.gbl>...
Read more carefully "Resolution" Section

George.

"Sean" <mc******@efn.org> wrote in message
news:9f**************************@posting.google.c om...
I'm having the problem described in KB article 822734. You can see it
at this URL: http://support.microsoft.com/default...b;en-us;822734
In the article it says I can get the fix by "clicking on the download
link later in this article." But there _is_ no download link later in
the article.

Nov 18 '05 #4
Your post went unanswered. Have you resolved this issue?

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
"Sean" <mc******@efn.org> wrote in message
news:9f**************************@posting.google.c om...
Can any of the MSFT people here tell me if there's a way I can report
this KB page with the missing download without having to go through
all the BS of signing up for passport and jumping through hoops just
to try and do a favor and report this?

Sean
mc******@efn.org (Sean) wrote in message

news:<9f**************************@posting.google. com>...
I did read the resolution section; that's the part I quoted in my
original post -- the part that says to download from the link later in
the article, when there is in fact no link later in the article.

(There's a link shortly after that, but it's not for the patch, it's
just a contact page for Microsoft. Perhaps you assumed that was the
link for downloading the patch and thought I'd missed it?)

Sean

"George Ter-Saakov" <no****@hotmail.com> wrote in message news:<#n**************@TK2MSFTNGP12.phx.gbl>...
Read more carefully "Resolution" Section

George.

"Sean" <mc******@efn.org> wrote in message
news:9f**************************@posting.google.c om...
> I'm having the problem described in KB article 822734. You can see it > at this URL:

http://support.microsoft.com/default...b;en-us;822734
>
> In the article it says I can get the fix by "clicking on the download > link later in this article." But there _is_ no download link later in > the article.

Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Tom Pearson | last post by:
I create controls and validators dynamically dependent on data at runtime. I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate. These...
0
by: Tom Pearson | last post by:
I create controls and validators dynamically dependent on data at runtime. I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate. These...
0
by: Sushil Srivastava | last post by:
Hi Guys, I have developed a utility that provide a smart MSDN knowledge base search both off-line and on-line. I have describe more in detail below why I decided to write this utility (one...
8
by: Sai Kit Tong | last post by:
In the article, the description for "Modiy DLL That Contains Consumers That Use Managed Code and DLL Exports or Managed Entry Points" suggests the creation of the class ManagedWrapper. If I...
2
by: Blue Streak | last post by:
Hello, I am trying to develop an interface to view an internal knowledge base. One feature I would like to add is a "Generate E-Mail" button which would automatically open an e-mail message a...
1
by: Gabriel Lozano-Morán | last post by:
When using the tabstrip control combined with a multipage (several pageview) there is a problem when using validators. The problem is that validation also occurs on the validators that are not on...
0
by: just.an.imbecile | last post by:
Hello all, Here is a quick version of my problem. I have a website that consists of 4 ASPX pages. Every field is required by default, but on pages 1 and 2, there are several fields that can be...
2
by: nano2k | last post by:
Hi It's maybe offtopic, but do you guys have an ideea of how to develop an knowledge base for troubleshooting an application? Picture this. After deploying an application to multiple locations,...
4
by: Madhur | last post by:
Hello All I am learning how to use ASP.NET Validators and would appreciate if someone could provide me with guidance. I have written very simple ASPX page below with a Dropdown list, a...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.