Search

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

Matching Posts

  • Re: Neet to convert 128 characters long Hexadecimal number to binary number in c#

    private static string GetSHA512(string strPlain) { UnicodeEncoding UE = new UnicodeEncoding(); byte[] HashValue, MessageBytes = UE.GetBytes(strPlain); SHA512Managed SHhash = new SHA512Managed(); string strHex = ""; HashValue = SHhash.ComputeHash(MessageBytes); foreach (byte b in HashValue) { strHex += String.Format("{0:x2}", b); //strHex += b.ToString(); } int len = strHex.Length; System.Collections.BitArray ba; ba = new System.Collections.BitArray(HashValue); StringBuilder sb
    Posted to Web Forms (Forum) by Blackat.NET on 12/12/2009
  • Re: Reading HTML - Is it possible?

    You can read a web page on an external website with the class WebClient. I think that you can store the content of the webpage and next day will compare with new content. But you have to define a "degree of difference" because, for example, if you have a page where the is a counter for visit it's normally that the page change every day.
    Posted to Web Forms (Forum) by Blackat.NET on 9/13/2008
  • Re: Default.aspx as login page

    I use ASP.NET Forms Authentication. I have a Default.aspx page where there are two textbox, one for the username and another for the password. I have set loginUrl attribute of forms tag in web.config with the value Default.aspx ( the first page of my web application ). I would know if this configuration can create problem in web application. Thank you.
    Posted to Security (Forum) by Blackat.NET on 2/7/2008
  • Default.aspx as login page

    Hi. There is some counter-indication to use Default.aspx as login page for web application ? I have read a lot of tutorials where is used a Login.aspx as login page. Thank you for reply.
    Posted to Security (Forum) by Blackat.NET on 2/7/2008
  • Re: ASPX Rendering problem

    I have again the same problem.... .... This is some screenshot...... Page with popup interference error Correct page The Popup I have not shared variable....Please help me... Can be some IIS configuration parameter ?
    Posted to Getting Started (Forum) by Blackat.NET on 1/28/2008
  • Re: ASPX Rendering problem

    What do you mean with "static variable" ? I use the inline code model and I have some variable and constant like... 1 < script runat= "server" > 2 Dim aGlobalVariable As Int = 20 3 Const aGlobalConstanst As Int = 10 4 5 '.... and so on... 6 </ script > Could be this the problem ?
    Posted to Getting Started (Forum) by Blackat.NET on 1/6/2008
  • Re: ASPX Rendering problem

    Hi Jeev. It's a simple web page with a GridView and SqlDataSource control. I use the OnRowDataBound event for modify the rows of GridView.
    Posted to Getting Started (Forum) by Blackat.NET on 1/5/2008
  • ASPX Rendering problem

    Hi to all. I have a problem with a page in a web application. In random case in the html output of the page there is an interference of html code (or binary data) that belongs to another page in the application. This issue specially happens when 5 or more user use the web application. What could be?
    Posted to Getting Started (Forum) by Blackat.NET on 1/5/2008
  • Re: Inline If Then Statement

    Oh my god! I think it's a terrible solution and don't reflect the style of programming with asp.net. Why you don't use a MultiView for doing what you want without inline code? Simply... < asp:MultiView runat= "server" id= "mv1" > < asp:View runat= "server" id= "AdminManagerView" > option1 </ asp:View > < asp:View runat= "server" id= "ManagerView" > option2 </ asp:View > </ asp:MultView > .
    Posted to Web Forms (Forum) by Blackat.NET on 11/7/2007
  • [FORUMS] Html output problem ?!? [:S]

    Viewing the html code of the forum pages there are some server tags like < CSControl:PlaceHolder > or < ContentTemplate >. I don't think it's normal. Bye...
    Posted to Feedback on this website (Forum) by Blackat.NET on 11/3/2007
Page 1 of 5 (48 items) 1 2 3 4 5 Next >