Ask a Question related to ASP.NET General, Design and Development.
-
S. Justin Gengo #1
Re: VERY STRANGE BUG? Adding a textbox control causes other textbox control to fail???
I've had this happen a few times too. I'm still not positive of what
exactly causes it but all that's happening is the control that no longer
works has lost the wiring.
(i.e. Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Button1.Click
has become:
Sub Button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
)
Just add back on: Handles Button1.Click and your code will work again.
I sure hope they fix it soon though! :)
--
S. Justin Gengo, MCP
Web Developer / Programmer
Free Code Library At:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"KathyB" <KathyBurke40@attbi.com> wrote in message
news:75e8d381.0307160904.6945779b@posting.google.c om...> Using vs.net to create asp.net aspx pages. All was going great, until
> on a simple form I had the following:
>
> A textbox (named txtScan)
>
> txtScan had Change event code that worked fine.
>
> I then added another textbox (named txtList - multiline format)
>
> When I run the app, the txtScan no longer works, it will let me enter
> data, but the Change event code will not fire.
>
> ANY IDEAS??? I've reproduced this 3 times -- thank God for backup.
> Even when I deleted the txtList box, the problem was still there.
>
> Thanks,
> Kathy
S. Justin Gengo Guest
-
Web Textbox Custom Control
Please Help Me.. Is there anyone who knows how i can make a Custom WebControl Textbox, which can take my native Language (Farsi) on a webPage. I... -
Help with Customized TextBox control.
Hi, I have successfully added my TextBox control that inherits from the TextBox. I have added a property called ApplySecurity that can be... -
Adding a dynamic textbox control to a datagrid with Datatable datasource
Hi, I have a datagrid, and I want to bind this to a datatable, and I would like to have textbox controls and one button control. The problem... -
Textbox control source
I can't figure out how to get textboxes on my form to display data from a table. I've been messing around with the control source, but so far... -
CSS & ASP.NET Textbox Control
Can you change the "Enabled" property of a Textbox control with CSS? Also, is there a property that allows you to change the appearance of a...



Reply With Quote

