Forum: ASP.NET Jul 24th, 2007 |
| Replies: 1 Views: 2,709 This is really a regular expression question opposed to a .NET but I can't see any forum that specialises in that kind of thing, so as I'm using ASP.NET I figured I'd post it here ;)
I have a... |
Forum: IT Professionals' Lounge Jun 13th, 2007 |
| Replies: 5 Views: 773 Wouldn't it be easier to modify your firewall rules to prevent certain machines accessing certain URL's? i.e. Disallow all except Windows Update site, or local intranet sites.
If a production... |
Forum: ASP.NET Jun 12th, 2007 |
| Replies: 1 Views: 619 I suppose you could tell the frame with Form1 to reload using JavaScript from Form2 and build your tree in page_load. |
Forum: HTML and CSS Jun 12th, 2007 |
| Replies: 11 Views: 6,280 Actually I find them particularly handy when I have 10 tabs open in Firefox and the title text isn't fully visible. A quick scan of the icons and I know exactly what's what. |
Forum: ASP.NET Jun 6th, 2007 |
| Replies: 1 Views: 5,647 What you could do is add DataKeyNames to the GridView and set your table column names in there i.e.
<asp:GridView ID="GridView1" runat="server"
DataKeyNames="PNR,Credit Card Number,Email... |
Forum: ASP.NET Apr 20th, 2007 |
| Replies: 2 Views: 1,689 You're probably getting an error because you're trying to connect to a MySQL Server using the SQL providers.
Try downloading the MySQL Connector from mySql.com:... |
Forum: ASP.NET Apr 20th, 2007 |
| Replies: 1 Views: 5,957 Have a look here...
http://www.asp.net/learn/videos/view.aspx?tabid=63&id=122
That should it better than I could ;)
Cheers,
Blackred. |
Forum: ASP.NET Apr 20th, 2007 |
| Replies: 3 Views: 12,526 OK, I finally managed to get this cracked!
Basically you need an invisible button that you apply the ModalPopupExtender to, you then call the Click of this invisible button using javascript like... |
Forum: ASP.NET Apr 20th, 2007 |
| Replies: 2 Views: 8,016 Hello,
It sounds like you are populating the textbox on load but you are not wrapping a check to see if the page has posted back around the databind.
For example...
Textbox1.Text =... |
Forum: ASP.NET Apr 20th, 2007 |
| Replies: 3 Views: 12,526 Hello, first post so be kind ;)
I'm using the ModalPopup to display a loading message when the user clicks on an imagebutton. The problem here is that while the ModalPopup is on screen, the button... |