Search

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

Matching Posts

  • Re: Reportviewer: Image spanning more cells down

    Do you want to display some stand alone image on the header? or You want to display image from database?
    Posted to SQL Server Reporting Services (Forum) by rishnan on 7/3/2009
    Filed under: image in reportviewer, Image display in report viewer
  • Re: Reportviewer: Image spanning more cells down

    The code which you have used will not work and this depends on how you have stored your image into your database. you better store your image as byte into the field. You can still use the datatype as image. I will give you the small snippet which will help you store that image field as byte. protected void InsertImage(byte[] buffer) { String myConnection = GetConnectionString(); SqlConnection objConnect = new SqlConnection(myConnection); SqlCommand cmd = new SqlCommand("INSERT INTO dbo.TableName
    Posted to SQL Server Reporting Services (Forum) by rishnan on 7/3/2009
    Filed under: Reportviewer asp.net
  • Re: Reportviewer: Image spanning more cells down

    In the header, so far i have used only embedded images. May be you can give a try using Database as a source in the property field. But normally you can keep that image field at body and refer that text box into that header/footer. For ex: You place that image value at some place in the body, fetch the address of the textbox (Ex:txtTestRefer) In the header you use like the following one: =ReportItems!txtTestRefer.Value It's the only way where we can refer the values from body to header/footer
    Posted to SQL Server Reporting Services (Forum) by rishnan on 7/3/2009
  • Re: Do i have to define SMTP settings in web.config to send e-mail?

    My email has been solved without even setting up anything in the web.config file. I just given all of my credential inside the function along with right outgoing port. look at the example below (note: done for godaddy hosting, also tested with bizmail of yahoo): private void AutoEmail(string strcontents) { try { System.Net.Mail.MailMessage Mail = new System.Net.Mail.MailMessage(); SmtpClient client = new SmtpClient("smtpout.secureserver.net", 3535); System.Net.NetworkCredential MyCache
    Posted to Configuration and Deployment (Forum) by rishnan on 6/7/2009
    Filed under: email issue, email asp.net
  • Re: Ajax Calendar Extender Within Gridview

    Yes. I got a solution. I am passing the datevalue like below in the update query: if (InstalledDate != null && InstalledDate.DayOfYear != 1) sqlString += " ,InstalledDate = '" + InstalledDate .Year + String .Format( "{0:MM}" , InstalledDate ) + String .Format( "{0:dd}" , InstalledDate ) + "'" ; else sqlString += " ,InstalledDate = '' " ; Hope this will help you.
    Posted to ASP.NET AJAX UI (Forum) by rishnan on 6/7/2009
  • Re: GoDaddy Installation Walkthrough

    Hi Dude, It seems you have some issues with your web.config file. You must have valid culture info inside the config file. It should something similar to the below one: <compilers> <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4"> <providerOption name="CompilerVersion" value="v3.5"/> <providerOption
    Posted to Club Web Site Starter Kit (Forum) by rishnan on 5/22/2009
    Filed under: web.config, GoDaddy
  • Re: ReportViewer: Date Format

    Hi Friend, I am working with Report Viewer 2008. I have date field as follows: FormatDateTime(Fields!DeliveryDate.Value) the default format is MM/dd/yyyy I want like dd/MM/yyyy, I tried all around. but no result. Can you help me?
    Posted to SQL Server Reporting Services (Forum) by rishnan on 3/14/2009
    Filed under: Report Viewer Date Format, Date format
  • Re: Do i have to define SMTP settings in web.config to send e-mail?

    Hi, I am using emailing program in my web application. When I work with my local machine, the mailing is working fine even without the SMTP Settings in web.config file. When I upload my application into IIS in my server, I unable to send emails. I have set SMTP Settings as follows in my web.config file: <system.net> <mailSettings> <smtp deliveryMethod="network" from=" webmaster@mydomain.com "> <network host="smtpout.secureserver.net" port="25"
    Posted to Configuration and Deployment (Forum) by rishnan on 3/12/2009
    Filed under: IIS mail config, mail from asp.net with C#, mail from web applications
  • Re: GoDaddy Installation Walkthrough

    Hi, I have exactly same issue as you have. Hope you would have solved this issue earlier. Can you help me out to solve this? For Your Note: "I have Windows Server 2003 , And I deployed in this Server's IIS. " I am waiting for your response. Your help in this would be highly appreciated.
    Posted to Club Web Site Starter Kit (Forum) by rishnan on 3/12/2009
Page 1 of 3 (24 items) 1 2 3 Next >