Search

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

Matching Posts

  • Re: excel operations in ASP.NET 2.0

    [quote user="nitinver83"] hello but from where would i get the dll file plz help [/quote] Hi nitinver83, a. On the Project menu, click Add Reference . b. On the COM tab, locate Microsoft Excel 11.0 Object Library , and then click Select . c. Click OK in the Add References dialog box to accept your selections. If you receive a prompt to generate wrappers for the libraries that you selected, click Yes . Hope this helps. Thanks.
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/9/2007
  • Re: Checking is form field exist - How??

    Hi gmcghee, You could use Request.Form( parameter ).Count to check out whether there is any parameter. If a parameter does not have multiple values associated with it, the count is 1. If the parameter is not found, the count is 0. More details: http://msdn2.microsoft.com/en-us/library/ms525985.aspx Thanks.
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/5/2007
  • Re: File Uploads

    Hi yodasr, In ASP.NET 2.0, the FileUpLoad control enables you to upload file to the server. It displays a text box control and a browse button that allow users to select a file to upload to the server. The user specifies the file to upload by entering the fully qualified path to the file on the local computer (for example, "C:\MyFiles\TestFile.txt") in the text box of the control. Alternately, the user can select the file by clicking the Browse button and then locating it in the Choose
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/5/2007
  • Re: MSDOS to ASP.NET

    Hi, It exists but you have to have the privilege to access command line. Thanks.
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/4/2007
  • Re: Simple Jagged Array question

    Jagged Arrays A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an "array-of-arrays." This topic contains examples of declaring, initializing, and accessing jagged arrays. The following is a declaration of a single-dimensional array that has three elements, each of which is a single-dimensional array of integers: Copy Code int[][] myJaggedArray = new int[3][]; Before you can use
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/2/2007
  • Re: MailMessage.BodyEncoding = "utf-8" results in "windows-1252" in mail message

    Hi sandor, In the beginning, when email was first being used, it was all us-ascii content. To handle different languages and character sets, different encodings must be used. The following example demonstrates sending a non us-ascii email, using the ISO-8859-1 character set as an example. The hardest part of sending non us-ascii email, is to determine the correct character set. For reference, an easy to use character set chart can be found at aspNetEmail's website, here: http://www.aspnetemail
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 7/2/2007
  • Re: Sending mail with attachment from memory

    Hi GeekFromIndia, To send an email with attachments, the ASP.NET process (or the ASP.NET impersonated account) will need permission to read the file, and attach it to the MailMessage class. Note: Attachments can only be created from files on the file system. System.Web.Mail does not support creating attachments directly from strings, byte arrays, streams, or from uploaded files. To directly create attachments from these types, use aspNetEmail , otherwise, the attachment contents must first be saved
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 6/29/2007
  • Re: Uploading files to a network drive

    Hi armandolaser, Please make sure that you can access Y:\ from the server to your folder. If the server is not the same as your localhost PC, there may be something wrong with network service, such as the server couldn't get access to your folder in localhost, or share folder problem. Hope this helps. Thanks.
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 6/29/2007
  • Re: User controls

    Hi generalproblem, User control will create its instance. So if you call your method from other page, it will be non-sense. If you assign value to variable in user control on page, you have to do it in code behind or do postback and reassign to variable. For your convenience, look at this article: If you need to carry a variable from one page to another, you have a few options with asp.net. The method best suited for you depends on the way the data will be used. The first option is to use session
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 6/29/2007
  • Re: filling dataset table from two tables...

    Hi yanivhanya, It seems that there is something wrong in function "filldatatable". Anyway, you may have to look at this sample with much code for you to follow. ' Put the next line into the Declarations section. private dataSet As DataSet Private Sub MakeDataTables() ' Run all of the functions. MakeParentTable() MakeChildTable() MakeDataRelation() BindToDataGrid() End Sub Private Sub MakeParentTable() ' Create a new DataTable. Dim table As DataTable = new DataTable("ParentTable"
    Posted to Getting Started (Forum) by Jerome Cui - MSFT on 6/29/2007
Page 1 of 108 (1073 items) 1 2 3 4 5 Next > ... Last »