Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. codeing

    detect already running

    may be you could find some help by this link: - http://www.dotnet247.com/247reference/msgs/57/286221.aspx
  2. codeing

    email

    Try this chunk of code:- Email.Body =TextBox.Text; System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient(); //This object stores the authentication values System.Net.NetworkCredential basicAuthenticationInfo = new...
  3. codeing

    retaining values in previous page

    U can also use Server.Transfer with its 2nd attribute which is boolean preserve form attribute set to true.
  4. codeing

    Passing objects between pages

    Try this it might help:- In the calling page do the folling(control1 and control2 are textboxes here):- Context.Items[mycontrol1] = mycontrol1.Text Server.Transfer("uri", true); In the called page do:- Page callingpagename = (Page)Context.Handler; mycontrol2=(expicit...

Part and Inventory Search

Back
Top