Search

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

Matching Posts

  • Re: foreach POST variable add the into a string and create ( CSV FILE)

    Thank you for the replay, What i did is to have an array of the fields that I want to include in a csv file from a form submission. Then loop through all POST variable and check if the post variable exist int our array.(because I've 40 fields in the form and i don't want all of them). If exist then add the POST variable value in the csv file. I hope you understood what I'm trying to do.I'm using vb.net code.. here is my latest attempt. Dim i As Integer Dim field(4) As String field(0) = "txtName"
    Posted to Web Forms (Forum) by netmastan on 9/29/2005
  • foreach POST variable add the into a string and create ( CSV FILE)

    hi, I would like to know how can i do this in asp.net. basically i would like to capture all the form fileds that is submitted and create csv file with comma delimated. if any field has comma inside it then conver to space. Here is my pseudocode Dim csv as sting foreach post variable as var { var=removecommawithspace(","," ",var) csv+=var & "," } I can do it php easily but i can't do it in asp.net ..since I'm learning asp.net slowly.
    Posted to Web Forms (Forum) by netmastan on 9/28/2005
  • Re: validating checkboxlist

    thank you but i got this error Could not load type System.Web.UI.WebControls.RequiredListValidator from assembly System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
    Posted to Web Forms (Forum) by netmastan on 9/26/2005
  • validating checkboxlist

    I just want to make sure customer checked at least one item. <asp:CheckBoxList id="relationship" TextAlign="Right" runat="server" RepeatColumns="2"> <asp:ListItem>Employee</asp:ListItem> <asp:ListItem>Employee</asp:ListItem> <asp:ListItem>Other (please state)</asp:ListItem> </asp:CheckBoxList> My attempt Sub validateCheckbox(source As object,args As ServerValidateEventArgs) dim s dim i s="" for i=0 to relationship.Items.Count-1 if relationship.Items
    Posted to Web Forms (Forum) by netmastan on 9/26/2005
  • convert asp file to aspx. Anyhelp.

    hello anyone can help to convert this nice search script <% ' NOINDEX option Explicit Dim objFolder,strSearchText,objfso,sc,numItems,begpos,endpos,slen,sResult if Request.form("SearchText") = "" Then With Response .write "<head></head><BODY ><Basefont face=Tahoma><TITLE>Search www.mysite.com</TITLE><h2><Center>Search www.mysite.com </h2></center><BR><div align=center id=status></div><BR><BR>"
  • Any example how to search in xml file

    Does anyone have any code or links that shows how to do search in xml file. Thanks
    Posted to Getting Started (Forum) by netmastan on 4/3/2004
  • File search example/ Search database exmple

    Hello Does anyone have code that search files in directories or search database... Well, I want to search in folders or files.. I am not using any database.. REgards
    Posted to Getting Started (Forum) by netmastan on 3/17/2004
  • Re: :: adding own class to a file / global

    Thank you but I have told you that I am using webmatrix. Anyway, I think I have found the solution.. somethig like this <%@ inherits="myclassname" src="myclassfile.vb" %>
    Posted to Getting Started (Forum) by netmastan on 3/14/2004
  • :: adding own class to a file / global

    Hello, I want to know how do u include class file in webmatrix. Let say i have a class call mydb in mydb.vb file. How do I include this in another file.. and also how can I include it such a way,, i can uset in any page,script .. instead of importing class in ever page.. Regards
    Posted to Getting Started (Forum) by netmastan on 3/12/2004
  • html code in text type field

    Hello, IN access text type field you can have maximum 255 character. I want to store product description with html tag in it. // Sampe of a table product_id -> Auto Number product_description -> text How I am suppose to larger character in the text field ?
Page 1 of 3 (23 items) 1 2 3 Next >