Search

You searched for the word(s): userid:718240

Matching Posts

  • Re: Malicious script added in my website automatically

    Hi smartymca, I think there are some backdoor FTP trojans which can do such nasty thing. In such situation what you can do is 1. Change the password of FTP 2. Scan for virus in your computer (I am sure you will get some backdoor FTP trojan/gen) 3. Don't store FTP connection details in FTP software instead use quick connect 4. Upload affected pages
    Posted to Security (Forum) by Coool on 11/23/2009
  • Re: Screen Scraping

    Hi aspquestion, I hope you have already got your answer from the previous post. I only want to tell you to take some time understanding the CookieContainer for any request. It is especially useful when you need to take care of session of called page. It might not be needed for your current problem, but can greatly be helpful for future attempt.
    Posted to Web Forms (Forum) by Coool on 11/23/2009
  • Re: problem with Page.ClientScript.RegisterClientScriptBlock()

    Hi priyajee8, If what you are telling is right (browser block the popup after postback then), the solution is very easy. What you can do is call the ajax event to set the session variable and then when you get response back to client side with success then call window.open javascript to redirect page to open popup. For an exmple, If you are using jQuery for ajax call then $.ajax({ type: "POST", url: " IntermediatePage.aspx ", data: " timeValue=" + document.getElementById
    Posted to Web Forms (Forum) by Coool on 11/23/2009
  • Re: calling javascript from content page

    Hi tcl4p, if you are using webcontrols like Button, LinkButton, ImageButton etc., you have to make use of OnClientClick event instead of click event in your aspx page. However, if you are using HtmlControls (control with normal html tag with runat="server" ) you can go with normal html event name. For very simple example of OnClientClick refer http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.onclientclick.aspx
    Posted to Web Forms (Forum) by Coool on 11/22/2009
  • Re: Why my Custom Session State Provider hangs my page after refresh?

    No one....???? Anyone who have configured website to use sql server session state in middle trust environment, please share your experience.
    Posted to Web Forms (Forum) by Coool on 11/9/2009
  • Re: Custom Session State Provider runs fine but only with cookieless set to true !!!

    Guys, I have just resolved the issue and found that when cookieless is set to false , it delete the database record for session after creating it. I have taken the sample from microsoft website ( here ) and don't understand why it won't working with website which use cookie to store session at client side. As I have changed my code, here I am posting the whole code once again. Please help... Sql Script ------------ GO /****** Object: Table [dbo].[Sessions] Script Date: 11/09/2009 06:52:42
    Posted to Web Forms (Forum) by Coool on 11/9/2009
  • Re: Why my Custom Session State Provider hangs my page after refresh?

    Sorry, I have just changed unformatted text (code) to make it readable. :)
    Posted to Web Forms (Forum) by Coool on 11/7/2009
  • Why my Custom Session State Provider hangs my page after refresh?

    Hi all, I have made very simple demo application to run it under middle trust environment. But I have a requirement to use sql session state. As, default sql session state provider read configuration file, it fails in middle trust environment. So, I have quickly created simple custom state provider (I used reference for microsoft website.). It runs fine when the session is created but then after it hangs when I refresh my page when the same session data is loaded from database. I hope someone can
    Posted to Web Forms (Forum) by Coool on 11/6/2009
  • Re: Added SortField using Reflection but no luck with Sort Order

    Ok I solved it. Actually, I was misleaded by one article. We can add Sort field from .NET studio also. If anyone is interested how to add sort field, check in the toolbar report menu. Crystal Reports toolbar --> Reports --> Record Sort Expert...
    Posted to Crystal Reports (Forum) by Coool on 9/14/2009
  • Added SortField using Reflection but no luck with Sort Order

    hi all, I have created crystal report with xsd datasets. Everything works fine except the sorting. In Crystal Report .NET business object, we have no direct functionality to add Sort field through coding, so I used reflection to do so. But even after adding the sort field, it gives the same result as it gives before. Any suggestion? Here is my code. Private Sub MyPage_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init Dim tblCategories As New DataTable() tblCategories.Columns
    Posted to Crystal Reports (Forum) by Coool on 9/12/2009
Page 1 of 66 (652 items) 1 2 3 4 5 Next > ... Last »