Search

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

Matching Posts

  • Re: how to send email in asp.net using c#

    [quote user="chendubabu"] i want code for sending emails in asp.net using c#.net. [/quote] Hi, I strongly suggest you having a visit to this website. It gives a great FAQ about how to use System.Net.Mail namespace in ASP.NET to create a mail sending system. Here is the link: http://www.systemnetmail.com/faq.aspx . Also, there is a video tutorial telling how to use ASP.NET to send Email from a web site: http://www.asp.net/learn/videos/video-416.aspx . Best Regards, Shengqing Yang
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: Confused !? ASP.Net Preview Extension ? ASP.Net Futures ? SilverLight SDK ? SilverLight Tools ?

    Hi, As this is an ASP.NET forum, I suggest you goto this url to look for some help of learning with SilverLight: http://forums.silverlight.net/ . Also, you can get a start tutorial from this link: http://silverlight.net/getstarted/ and many video lessons from http://silverlight.net/learn/videos/silverlight-videos/ as well. Since the SilverLight technology growing very fast, you would like to get the lastest references from the SilverLight official website http://www.silverlight.net/ instead of the
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: How to Create Virtual Directory Programatically?

    [quote user="maverickhyd"] Now you can able to add Virtual directories inside Projects Folder Now My Question is How can we do this programatically??? [/quote] Hi, Maybe you can have a try to the IISManager class mentioned in this article http://www.codeproject.com/KB/cs/virtualdir.aspx . There is a method called CreateVirtualDirectory in this class and this demo is free and writtern in C#. In addition, as this is a getting start queue in ASP.NET forum, you may post this question in a more
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: Book title

    [quote user="Will Steele"] There is a fairly recent ASP.NET book that discusses how to build a web site by storing page code in SQL Server. I can't recall the title of it and was wondering if this sounds familiar to anyone else. I thought it was ASP.NET 3.5 Unleashed , but, after reviewing it, saw that's not it. [/quote] Hi, Maybe you can refer to this link to help you recall the book name as there are a few books which are all popular of learning ASP.NET and you can see their covers
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: File uploading and Downloading

    Hi, For upload files to the server, you can use the FileUpload control in ASP.NET 2.0 and later version of ASP.NET. I suggest you visiting the All-In-One CodeFx in codeplex.com. You can get a detailed sample of how to use FileUpload control in the ASP.NET sample package. Here is the link: http://cfx.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=35920 . In the page, select the All-In-One CodeFx 2009-11-15 (ASP.NET) package to download. There is a sample called VBASPNETFileUpload in that package
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: Regular expression: String start with <div> end with <br /> or </div> which ever comes first

    [quote user="skyblue789"] Regular expression is hard. Can anyone help me with this one? [/quote] Hi, Your Regular Expression is almost there, expect for the confusion between '[]' and '()'. You can have a try on this pattern whichi should work for you. "<div>(.*)((</div>)|(<br />))" For a complete demo of this case, you can refer to the code here. Imports System.Text.RegularExpressions Dim r As New Regex("<div>(.*)\s(.*)((</div>
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/25/2009
  • Re: store order status strings in VB

    [quote user="bexasp"] thanks for the reply Did you use the C# To VB Converter?, cos i tryed that but it does not work [/quote] Hi, Please make sure not to put this code in the same line as VB.NET doesn't support one statement in several lines. If you do need to separate the array into several lines, you can have a try on this demo. Public Shared ReadOnly OrderStatuses As String() = {"Order placed, notifying customer", _ "Awaiting confirmation of funds", _ "Notifying
    Posted to Visual Basic .NET (Forum) by Shengqing Yang - MSFT on 11/24/2009
  • Re: about string object

    [quote user="getchinna_sv"] in mscorlib.dll .... ? please explain me in a bit detailed.... [/quote] Hi, Maybe you can open the mscorlib.dll with Reflactor. It can show you the code within the .dll file in C#, VB.NET, IL and so on. You can download the Reflactor freely here: http://www.red-gate.com/products/reflector/ . Hope this helps. Also, if you can give more information what you are after, I think we can help you better. Best Regards, Shengqing Yang
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/23/2009
  • Re: how to find embed node giving

    Hi, Are you working with a WinForm application or a Website project? Best Regards, Shengqing Yang
    Posted to Getting Started (Forum) by Shengqing Yang - MSFT on 11/23/2009
Page 1 of 179 (1787 items) 1 2 3 4 5 Next > ... Last »