Search

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

Matching Posts

  • Re: Export PDF to HTML

    you should install adobe reader ,then ie can resgiter activeX control and use it open that file. try it.
    Posted to Web Forms (Forum) by dkzeng on 4/23/2007
  • about old project wrote by Enterpirse2005 after my updated framework occur an error..

    my question is my Compilied project which wrote by Enterprise library 2005, when i update my Framework, may be 1.1 to 2.0. An Error occur ,my old project cannot use again ,said that System did not allow Access Registrykey... any one could help me?thanks...
    Posted to Microsoft Application Blocks (Forum) by dkzeng on 5/8/2006
  • the page did not work untill the downloaded page finished my download?

    i use two page ,one is soft.aspx ,another is downloader.aspx. when i clicked 'download' button which located in soft.aspx,the downloader.aspx opened ,but did not see any web form ,only a saved file dialog.when i was saving file,the soft.aspx cannot do any thing untill finished my download. soft.aspx download linkbutton script: private void lnkbtn_Click(object sender, System.EventArgs e) { Session["Soft"]=this.soft ; Response.Redirect ("Downloader.aspx",false); } downloader.aspx : public class Downloader
    Posted to Web Forms (Forum) by dkzeng on 4/21/2006
  • what's wrong with this decrypt stream Length?

    namespace fk { public class TripleDes { public TripleDes() { } public byte[] Encrypt() { return this._Encrypt ( this ._plainText , this ._key , this ._iv ); } public string Decrypt() { return this ._Decrypt ( this ._inputBytes , this .Key , this ._iv ); } private byte[] _Encrypt( string plainText, byte[] key, byte[] iv) { UTF8Encoding utf8encoder= new UTF8Encoding (); byte[] inputInBytes=utf8encoder.GetBytes (plainText); TripleDESCryptoServiceProvider tdesProvider= new TripleDESCryptoServiceProvider
    Posted to Security (Forum) by dkzeng on 4/15/2006
  • Re: How to hide or show a div

    String jscode= String.Format (" var temp=getElementById('{0}').style.visibility; \n\r if(temp=='hidden')temp='visible';else temp='hidden';"); //if that button id equal 'btnSubit',add this attributes when Control loading in page protected void Page_load(){ btnSubmit.AddAttributs('onclick',jscode); } try it ,good luck,4kzeng
    Posted to Client Side Web Development (Forum) by dkzeng on 4/11/2006
  • Re: Web window Panel print

    i am sorry to ask more about is:does this button1 would be printed out,too? tnx...
    Posted to Web Forms (Forum) by dkzeng on 4/2/2006
  • Re: DAAB cofigration setup Qeustion

    it's not in that case , i had installed DAAB in Enterprise Library for .NET 1.1 Triax,Could u give me a demo for vs2003.net ,i want to take a look...
    Posted to Microsoft Application Blocks (Forum) by dkzeng on 3/30/2006
  • DAAB cofigration setup Qeustion

    i had tried more time ,but failed again. althogh i used a demo which downloaded from internet... throw Exception message here: Invalid section name. The section 'dataConfiguration' does not exist in the requested configuration file 'D:/website/StoreAndSell/web.config' or the file 'c:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config'. Make sure that the 'enterpriseLibrary.configurationSections' configuration section exists in one of the files and that the section 'dataConfiguration
    Posted to Microsoft Application Blocks (Forum) by dkzeng on 3/29/2006
  • Re: How to pass the id of a textbox control to an OnClick sub?

    jcasp wrote: john1 wrote: jcasp, Thanks for the reply. Yes, we know how to see which button invoked the sub, what we don't know how to do is send the sub the name (id) of the textbox associated with the button. Any idea how to do that? You can retrieve the button's ID value directly as shown below: protected void Generic_Button_Click(object sender, EventArgs e) { Button btn = sender as Button; string id = btn.ID; } Is there a reason why you need to pass the ID as an argument instead? but i want to
    Posted to Web Forms (Forum) by dkzeng on 3/15/2006
  • Re: Static HTML Search Boxes

    Does it need Server.EncodingUrl() or something??
    Posted to Web Forms (Forum) by dkzeng on 2/6/2006
Page 1 of 7 (64 items) 1 2 3 4 5 Next > ... Last »