Search

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

Matching Posts

  • Re: how to filter duplicate data and count the duplicate data in data table

    sir,i am also looking for something more my table has a price column with duplicate entities such as like: 1 application1 10 1 application1 10 1 application1 10 1 application1 10 2 application1 20 2 application1 30 i need to filter the duplicate data and count the number of duplicate data as well as the total price and show the data like 1 application1 40 5 2 application1 50 2 actually i need to add on the price of the duplicate rows plz help
  • how to filter duplicate data and count the duplicate data in data table

    i have a data table like 1 application1 1 application1 1 application1 1 application1 1 application1 2 application2 i need to filter the duplicate data and count the number of duplicate data and show the data like 1 application1 5 2 application2 1 i could remove the duplicate rows by the following code public DataTable RemoveDuplicateRows(DataTable dTable, string colName) { Hashtable hTable = new Hashtable(); ArrayList duplicateList = new ArrayList(); //Add list of all the unique item value to hashtable
  • how to get the value from the iframe page in my current page.plz help

    i have a page such that <iframe src="iframe.aspx" id="iframe" ></iframe> <input type="button" id="btnsubmit" onclick="getIframeValues();" value="GetIframe Value" runat="server" /> <script type="text/javascript"> function getIframeValues() { // alert(window.frames["iframe"].document.forms["Members"].elements["TextBox1"].value); // alert(window.frames['iframe.aspx'
    Posted to Client Side Web Development (Forum) by suvo on 11/13/2009
  • Re: how to get the value from the iframe page in my current page.plz help

    ya atlast i got the solution my current page looks like:- <script type="text/javascript"> function getValue() { var iframe = document.getElementById("xyz"); var doc = null; if (iframe.contentDocument){ doc = iframe.contentDocument; } else if (iframe.contentWindow){ doc = iframe.contentWindow.document; } else { doc = window.frames[iframe].document; } if(doc){ var item = doc.getElementById('xy'); alert(item.value); alert(doc.getElementById('img').src); } }
    Posted to Client Side Web Development (Forum) by suvo on 11/13/2009
  • Re: how to authenticate smtp credential

    can any body tell me how to check the length of the attachment.I mean i can allow the user to send attachment only upto 1 mb.plz help me
    Posted to Web Forms (Forum) by suvo on 11/10/2009
  • problem in getting id of the text generated from the data base though the AutoCompleteExtender.plz help!

    i want to get the id of the corresponding text that is coming in the text box through the AutoCompleteExtender.How can i do so?Actually i need to save id of the text in db that is coming in the text box all the data are generated from db <asp:TextBox runat="server" ID="myTextBox" Width="300" autocomplete="off" /> <ajaxToolkit:AutoCompleteExtender runat="server" ID="autoComplete1" TargetControlID="myTextBox" ServicePath
  • how to authenticate smtp credential

    i want to authenticate smtp credential. and then send mail.My problem is that what ever pasword i am giving the mail is alway been send plz help.. try { MailMessage m = new MailMessage(); m.From = FROM; m.To = TO; m.Subject = SUBJECT; m.Body = BODY; m.Priority = MailPriority.High; SmtpClient client = new SmtpClient(SMTPServer); client.UseDefaultCredentials = false; client.Credentials = new NetworkCredential(mailto, SMTP_Password); client.Port = Convert.ToInt32(SMTP_Port); client.Send(m); } catch
    Posted to Web Forms (Forum) by suvo on 11/2/2009
  • Re: how to authenticate smtp credential

    basically i want to validate the password.my code looks all most the same with the above link.plz help me!!
    Posted to Web Forms (Forum) by suvo on 11/2/2009
  • Re: how to authenticate smtp credential

    When i am giving the invalid port number it is giving the error "Unable to connect to Remote Server". But when I am giving invalid password it is just sending the mail. Can any one tell me how to protect sending mail if wrong credentials are specified plz help me
    Posted to Web Forms (Forum) by suvo on 11/2/2009
  • Re: pagination problem plz help!

    i have found a way using sql query.It is like search engine. We can use it in grid view, datalist, repeater or dynamic html it will give the output like:- Prev 1 2 3 4 5 6 Next On clicking 6 it will be like Prev 6 7 8 9 10 11 12 Next On clicking Prev it will show like:Prev 1 2 3 4 5 6 Next the aspx page is like:- <asp:DataList ID="dtlArticle" runat="server" RepeatDirection="Vertical" RepeatColumns="3"> <ItemTemplate> <table width="100%"
    Posted to Data Presentation Controls (Forum) by suvo on 10/11/2009
Page 1 of 17 (164 items) 1 2 3 4 5 Next > ... Last ยป