No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
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 event doesn't fire so the page doesn't do anything - it just sits there …
[quote=roryt;387066]There isn't really any point of them anyway.[/quote] 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.
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 string as such... [code]<ul> <li> <a href="Welcome.aspx">Welcome</a> </li> <li> <as href="About.aspx">About …
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 worker requires access to a certain site you modify your firewall rules to allow 1 machine access to 1 site …
I suppose you could tell the frame with Form1 to reload using JavaScript from Form2 and build your tree in page_load.
What you could do is add DataKeyNames to the GridView and set your table column names in there i.e. [code]<asp:GridView ID="GridView1" runat="server" DataKeyNames="PNR,Credit Card Number,Email Address,Passenger Name,Passport Number,IP Number">[/code] And in your GridView1_RowDeleting you'll be able to build a query like this... [code=vb]Dim strSql As String = String.Format("DELETE FROM myTable …
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: [url]http://dev.mysql.com/downloads/connector/net/5.0.html[/url] I think all you need to do is replace every instance of SQL with MySql in your code, but check the documentation to be …
Have a look here... [url]http://www.asp.net/learn/videos/view.aspx?tabid=63&id=122[/url] That should it better than I could ;) Cheers, Blackred.
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... [code]Textbox1.Text = dbdatareader.item(0)[/code] Becomes... [code] If Not.PageIsPostback Then Textbox1.Text = dbdatareader.item(0) End If[/code]
The End.