Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

FishiFishi

@FishiFishi
About
Posts
29
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can I get list of all machine on LAN
    F FishiFishi

    Hello everyone, I want to generate a list of all available machines on the LAN. Can anybody help me out that how can I do this?

    Regards, Qaiser Nadeem

    C# question help

  • How to get Value from Drop Down List (SELECT)?
    F FishiFishi

    Hello, I am new to java technology. I have a jsp page wich contains a DropDownList (SELECT), two text boxes and a button. What I need to do is, I need to display one textbox (txtName) and hide the 2nd one (txtEmail) when the 1st index of SELECT is selected; and on selected index change if 2nd index is selected, the txtEmail to visible and txtName is to hide. and on Button press it should submit values at another page. Can any body help out.

    Regards, Qaiser Nadeem

    Web Development java database help tutorial question

  • How to create JSP web user controls?
    F FishiFishi

    Hello, I am new to java technologies. I am using Eclipse Europa IDE. I have created a JSP page but unable to create jsp user controls on it. please help me out.

    Regards, Qaiser Nadeem

    Web Development java visual-studio winforms help tutorial

  • How to nevigate through all the text of a texbox when it is read only?
    F FishiFishi

    I have a textbox, I want that customer can only read its text but problem arises when text exceeds from the width of the textbox. In normal case we can read all the text by using arrow keys. How can I read text when textbox is read only?

    Regards, Qaiser Nadeem

    ASP.NET question sales help tutorial

  • How to find out the installed version of MS Power Point from registry?
    F FishiFishi

    How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?

    Regards, Qaiser Nadeem

    Visual Basic question windows-admin tutorial announcement

  • How to find out the installed version of MS Power Point from registry?
    F FishiFishi

    How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?

    Regards, Qaiser Nadeem

    Web Development question windows-admin tutorial announcement

  • How to find out the installed version of MS Power Point from registry?
    F FishiFishi

    How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point on the machine. How can I do this?

    Regards, Qaiser Nadeem

    C# question windows-admin tutorial announcement

  • How to find out the installed version of MS Power Point from registry?
    F FishiFishi

    How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?

    Regards, Qaiser Nadeem

    ASP.NET question windows-admin tutorial announcement

  • A connection establishing error
    F FishiFishi

    I have my DB at remote server, when I run my application the following error accurs. "A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.)" can anybody tell this error is accuring and how can it could be solved.

    Regards, Qaiser Nadeem

    ASP.NET sysadmin database help

  • How to use MS Excel in .net without installing Excel
    F FishiFishi

    Hi I'm using MS Excel sheets in my Application, for this purpose MS Excel should be installed at the server. Now I wana use Execl App in my project but without installing the Excel at my machine (server). how can I do this?

    Regards, Qaiser Nadeem

    ASP.NET question csharp sysadmin tutorial

  • How to select 10-15 records?
    F FishiFishi

    Hello everybody I have a table "Employee" which contains 20 records. i want to select records from 10 to 15. how can I select?

    Regards, Qaiser Nadeem

    Database question tutorial

  • How to write in registry
    F FishiFishi

    How can i create a folder/file in registry and how can I write in the registry file?

    Regards, Qaiser Nadeem

    C# question windows-admin tutorial

  • How to write in registry
    F FishiFishi

    How can i create a folder/file in registry and how can I write in the registry file?

    Regards, Qaiser Nadeem

    ASP.NET question windows-admin tutorial

  • How to use Intragistics kit?
    F FishiFishi

    Hello Everybody I m new to use Infragistic NetAdvantage, is anyone here who have used this. i just wana ask how to start with this. Thanx in advance

    Regards, Qaiser Nadeem

    ASP.NET tutorial question

  • How to generate code from Rational Rose Diagrams?
    F FishiFishi

    Hello, I have drawn some diagrams in Rational Rose 4.0, now i want to generate code from these diagrams. anyone who has already done this, please guid me how to generate. Thank You Qaiser Nadeem

    Regards, Qaiser Nadeem

    Design and Architecture tutorial question

  • Email
    F FishiFishi

    if u still have any questions then plz come on q.nadeem@hotmail.com

    Regards, Qaiser Nadeem

    ASP.NET com sysadmin

  • How to download file from server database
    F FishiFishi

    its VB.NET, do u have c# code???

    Regards, Qaiser Nadeem

    ASP.NET database sql-server sysadmin tutorial question

  • Email
    F FishiFishi

    should i send u the web msgs????

    Regards, Qaiser Nadeem

    ASP.NET com sysadmin

  • Email
    F FishiFishi

    yes, yes, its working properly, but you have to define the msgs in web.config

    Regards, Qaiser Nadeem

    ASP.NET com sysadmin

  • Email
    F FishiFishi

    try { string msgBody = ""; string configToAddresses = ""; string[] toAddressesArray; configToAddresses = ConfigurationManager.AppSettings["MSG_REQUEST_TO_EMAIL_ADDRESS"].Trim(); MailMessage msg = new MailMessage(); msg.From = new MailAddress(ConfigurationManager.AppSettings["MSG_REQUEST_FROM_EMAIL_ADDRESS"].Trim()); toAddressesArray = configToAddresses.Split(';'); // Add to Addresses in email foreach (string toAddress in toAddressesArray) { msg.To.Add(new MailAddress(toAddress)); } if (ConfigurationManager.AppSettings["MSG_REQUEST_CC_EMAIL_ADDRESS"].Trim().Length > 0) { msg.CC.Add(new MailAddress(ConfigurationManager.AppSettings["MSG_REQUEST_CC_EMAIL_ADDRESS"].Trim())); } msg.Subject = ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_SUBJECT"].Trim() + " " + DateTime.Now; msgBody = ConfigurationManager.AppSettings["MSG_REQUEST_SALUTE_EMAIL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_BODY_START"].Trim() + " " + this.txtName.Text.Trim() + " (" + this.txtEmail.Text.Trim() + ")"; if (this.txtOrganization.Text.Trim().Length > 0) { msgBody += " of " + this.txtOrganization.Text.Trim(); } msgBody += " on " + DateTime.Now + ". "; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_BODY_MIDDLE"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_URL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_TEAM"].Trim() + "\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_TEAM_URL"].Trim(); msg.Body = msgBody; SmtpClient client = new SmtpClient(); client.Host = ConfigurationManager.AppSettings["SMTP_HOST"]; client.Port = int.Parse(ConfigurationManager.AppSettings["SMTP_PORT"]); client.Send(msg); } catch (System.Threading.ThreadAbortException ex) { } catch (Exception ex) { ConfigurationManager.AppSettings["DEFAULT_MESSAGE"] = ex.ToString(); Resp

    ASP.NET com sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups