Search

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

Matching Posts

  • Re: PopupcontrolExtender doesn't work in IE 8

    [quote user="manpakhong"] OH, Dear, I have found a very very simple method to solve it. just to put the code as follows: at the Page_Load() Method: For example, i have the following panels within the aspx. pnlBrand.Style.Add("visibility", "hidden"); pnlCUAddress.Style.Add("visibility", "hidden"); pnlCUPersonCUFax.Style.Add("visibility", "hidden"); pnlCUPersonCUPhone.Style.Add("visibility", "hidden"); pnlCustomerCUFax
  • Re: update "updatepanel" inside master.page from webform

    [quote user="Pablogrind"] Thanks man [/quote] Thanks.. This also was very helpful for me too.. The new virtual for master has made big time savings for me!
    Posted to ASP.NET AJAX UI (Forum) by robg_advernets on 8/15/2009
  • Help.. WebClient DownloadData Grabbing Fully Rendered Update Panel, Not "Loading.." message.

    I am trying to use WebClient client = new WebClient (); // Add a user agent header in case the // requested URI contains a query. client.Headers.Add( "user-agent" , "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)" ); Stream data = client.OpenRead(args); StreamReader reader = new StreamReader (data); string s = reader.ReadToEnd(); data.Close(); reader.Close(); Label1.text = s; I tried cleint.DownloadData and got the same results. And in the update panel
    Posted to ASP.NET AJAX Networking and Web Services (Forum) by robg_advernets on 4/30/2009
    Filed under: webclient Downloaddata AJAX UpdatePanel
  • Re: reorderlist doesnt save new order

    I found this example. Seems to be a great example. http://www.codeproject.com/KB/ajax/RealtimeReorderList.aspx?msg=2753593 It's a great example. I'm still new to ASP.NET 3.0. Can someone explain to me how I would convert this from LINQ to SQL datatype. 1 var db = new RealTimeReorderListDataDataContext(); 2 3 int ListItemCount = 1; 4 5 var ListData = from ld 6 in db.ReorderListItems 7 orderby ld.ListOrder 8 select ld; 9 10 foreach (var ListDataItem in ListData) 11 { 12 13 } 14
  • Re: MAP path in .master file

    This is GREAT! I've always struggled with using server.mappath in a dev and production enviroment. Want let you know this little tip has solved my long time issue of virtual directory in dev testing in local iis versus a root directory. Now maps perfect. Thanks again.
  • Re: HTML Email Message Using Encrypted Link

    Here is basically the results of my findings. I was using FreeTextBox to preview and allow the user to add/modify the email message template. Something FreeTextBox does to the HTML when encoded and sent to email message body was out of whack so outlook converts these elements to outbind:// I changed my wsywig to fckeditor and this resolved the problem. I am posting the answer on freetextbox forum as well to help some others. thanks for your example.
    Posted to Security (Forum) by robg_advernets on 7/21/2008
    Filed under: outbind email wsywig freetextbox fckeditor outbound://
  • Re: HTML Email Message Using Encrypted Link

    Thanks, I will try it this morning.
    Posted to Security (Forum) by robg_advernets on 7/21/2008
  • Re: HTML Email Message Using Encrypted Link

    Here's hopefully some more insite? Is there anywhere to test to see if outlook thinks to is maybe spoofing? Are these value querystring values? Good parameter, made link fine in outlook. ?evalCode=avPrvq8cYQEFHpM6FN4Jyw== Bad parameter, convert link to outbound:// garage and non linkable link. ?evalCode=88sWHsGVbgYz/1cFiOUJ7g==
    Posted to Security (Forum) by robg_advernets on 7/17/2008
  • HTML Email Message Using Encrypted Link

    Hoping someone has run into this. I cannot figure it out. I decided to encrypt the ID of record so a user can fill out a form from a link in their email. I then decrypt the querystring ID when return which works great. Problem: For some reason, Outlook client converts this link into a outbound:// (bunch random characters) /site/evaluation.aspx?evalCode=88sWHsGVbgYz/1cFiOUJ7g== When sent to Gmail or Hotmail, the service does not convert this and appears correct: http://www.domain.com/evaluation.aspx
    Posted to Security (Forum) by robg_advernets on 7/17/2008
    Filed under: encryption email htmlencoded link
  • Re: Draw image overwrites web page

    The above is correct. I tried your code and then accessed it with <img src=barcode.aspx?text=MYCODE1234> The only difference is I have Response.ContentType = "image/jpg" in mine and some additional resize of the image canvas background. I have some simililar code that make the rectangle ratio correct based on the font size requested. I will post in code project. I agree the components out there are over priced. This is a very simple solutions. I'm using in ASP.NET and scanning
    Posted to System.Drawing/GDI+ (Forum) by robg_advernets on 4/3/2008
Page 1 of 2 (17 items) 1 2 Next >