Search

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

Matching Posts

  • Re: Saving a sent mail in .Net

    Yup I was already using Thrd party component that is Outlook Redemption. and I have done it successfully.. If any body willing to have the code ping me and i will share that with him.. Thanks for the support
    Posted to Web Forms (Forum) by SajidWahab on 10/7/2008
  • Re: Saving a sent mail in .Net

    Thanks for the support But actually problem occurs when their are attachments. The pattern in which you guided me to save doesn't allow me to track my Mail Attachments. Help Required Please..
    Posted to Web Forms (Forum) by SajidWahab on 10/7/2008
  • Saving a sent mail in .Net

    I am using .Net 1.1 Can any body please guide me how to save a mail message on disk (say .eml ..) after smtp.send(); Or any body having an experience with Outlook Redemption (i.e., how to send mail via Redemption and them save it as .msg on disk) Any significant help will be appriciated. Thanks =-------------------------------------------------------=
    Posted to Web Forms (Forum) by SajidWahab on 10/6/2008
  • Re: Breakpoints are not working in Visual Studio .net

    There can be multiple reasons for it: Go to your project properties and enable debugging,, Go to your Web.Config and Check that Debug = "True",, Check that you are running your application in Debug Mode (and not in Release mode 'This happens when Your Breakpoint appears as ? mark') ----------------------------------------------------------------------------------------------------------------------------------------------- (Please mark it as answer if you found this as a solution
  • Re: session state vs viewstate approach

    I will go for SessionState, i.e., avoid ViewState and recursive DB calls. in case of search/(where hundereds of thousans of records to be fetched) each subsequent call to DB will be worse, and storing it into Viewstate will be more worse, (imagine where there are joins in your query, and in this case subsequent DB calls will be ......) so use SessionState and preffer to maintain SessionState out of process, so that memory problems are resolved. load Datasety once and then store it into Sessaion State
    Posted to Architecture (Forum) by SajidWahab on 6/12/2008
  • Re: New Web App Project - IIS5 and VS hate each other.

    Hi There, 1. although I didn't get your problem deeply because you haven't posted the error msg or the error code..... actually all I can say that you are providing an invalid WEB Address in the location textbox,,, try to create a windows application using the same Directory address if works fine,, then there is problem with your path,, make another Website in IIS,,, then provide that Web path in path text box,,, like "http://localhost:8080/mySite/" .. 2. as for as the problem of
  • Re: Display Binary Image

    One cannot directly open a binary image in IMAGE CONTROl or save an image to DB. as it is binary image: (its not the complete code but a way to do it) byte[] image = new byte[]; // assign this byte/binary array the image binary file....or what else that image is coming from FileStream objFileStream = new FileStream(tagetImageNameWithPath,System.IO.FileMode.Create); StreamWriter objStreamWriter = new StreamWriter (objFileStream); objStreamWriter.Write(image); /// use the stream writer to write the
    Posted to Data Presentation Controls (Forum) by SajidWahab on 4/16/2008
  • Re: Web Forms Designer problem - An exception occurred while ...

    well this is interesting problem,, that's why people upgrade to 2005 and onward.. :) 2 points to be noted: 1. check whether or not this is difference b/w the NAMESPACES of these 2 classes having the same name. (well you might have checked it as it will throw error of Class abc already exists in namespace A) 2. check whether in the HTML view of abc.aspx -> Page TAG -> inherits : see if there is the same name that you have specified for the class,,, <%@ Page language="c#" Codebehind
  • Re: Invalid character in a Base-64 string

    Hi there.. today I faced and fixed this BUG, actually according to my scenario when after logout/Session-Timeout I clicked th BACK of browser, it do redirected me back to default page but there was some Query string after the URL, and when I login again to that default page containing Query String, this Exception occur.,, so I traced that Query string in my project and at last I found that some where I have used the Request.Url.... due to which it was providing me with the bug,, so I tackled that
    Posted to Getting Started (Forum) by SajidWahab on 3/6/2008
  • Re: Microsoft Enterprise Library Problem.

    The problem has been resolved as .. I installed and configured the new version of Microsoft Enterprise Library,, referenced them again ,, again copied those classes from the new Library to my Projects and BOmmm Bomm, no error, Problem solved,,, :) ---------------------------------------------------
    Posted to Microsoft Application Blocks (Forum) by SajidWahab on 2/27/2008
Page 1 of 3 (22 items) 1 2 3 Next >