Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

9 Posted Topics

Member Avatar for Blackred

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 …

Member Avatar for gauravkukreja06
0
668
Member Avatar for Dsiembab

[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.

Member Avatar for Dsiembab
0
163
Member Avatar for Blackred

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 …

Member Avatar for Infarction
0
103
Member Avatar for bobbrooks

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 …

Member Avatar for Blackred
0
492
Member Avatar for Fungus1487

I suppose you could tell the frame with Form1 to reload using JavaScript from Form2 and build your tree in page_load.

Member Avatar for Blackred
0
69
Member Avatar for sajithkahawatta

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 …

Member Avatar for Blackred
0
132
Member Avatar for someoneelse

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 …

Member Avatar for hollystyles
0
130
Member Avatar for aerian

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.

Member Avatar for Blackred
1
47
Member Avatar for DeOiD

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]

Member Avatar for DeOiD
0
136

The End.