Search

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

Matching Posts

  • Re: Get Function From class file

    Hi vft, 1> Add your all classes in the app_code folder. From app_code/app_data folder these classes are available easily. 2> If u want that from same folder what your collegue kept then add reference of the file in your folder using namespace and make all classes method public. 3> Or u can create the dll of the class files and then you can add it to your file then also it can accessible to u. I hope this may help u.
    Posted to C# (Forum) by manojlev on 7/16/2009
  • Re: How to convert word to pdf

    Hi, You can use iTextSharp library which is free and will help u to create pdf's follow following links it'll help u. iTextSharp Tutorials http://itextsharp.sourceforge.net/tutorial/index.html iTextSharp Dll http://sourceforge.net/projects/itextsharp/ Following are some libraries which are not free pdfMachine http://www.pdfmachine.com/genp/to_pdf.html?ref=GA&campaign=topdf&adgroup=doc&ad=001&gclid=CNPZuYG42ZsCFQMupAod8wdnAw
    Posted to Web Forms (Forum) by manojlev on 7/16/2009
  • Re: Dropdownlist multipleChoice

    use the following links http://www.developerfusion.com/article/3828/web-forms-working-with-aspnet-server-controls/8/ www.w3schools.com/aspnet/control_dropdownlist.asp www.c-sharpcorner.com/.../DropDownListBox11222005064123AM/DropDownListBox.aspx hope this may help u. I
    Posted to Getting Started (Forum) by manojlev on 7/16/2009
  • Re: exception handling

    Hi, Use try catch block to show user friendly message. try{ // Your normal code here }catch(Exception ex){ Labelerrmsg.Text = "Your Friendly message" + ex.Message; } I hope this may help u.
    Posted to Getting Started (Forum) by manojlev on 7/15/2009
  • Re: Add image to body background

    [quote user="NC01"] [quote user="manojlev"] Hi, Use style of body like as follows <body style="background-image:url(~/images/image.gif)"> I hope this may help u. [/quote] That looks about the same as what kkarthikmca posted. Why post the same thing again? Kulrom's first solution is really the best anyways. NC... [/quote] Hi, When I posted that time kkarthikmca's post was not there. may be it happened concurrently. Though very sorry for same answer.
    Posted to Client Side Web Development (Forum) by manojlev on 7/15/2009
  • Re: Add image to body background

    Hi, Use style of body like as follows <body style="background-image:url(~/images/image.gif)"> I hope this may help u.
    Posted to Client Side Web Development (Forum) by manojlev on 7/15/2009
  • Re: Sending email?

    Hi, Use following link for emails http://www.codeproject.com/KB/aspnet/SivaEMailSample.aspx www.4guysfromrolla.com/webtech/080801-1.shtml i hope this may help u.
    Posted to Web Forms (Forum) by manojlev on 7/9/2009
  • Re: SqlDataSource transact?

    Hi, Refer the following link : http://msdn.microsoft.com/en-us/library/bb332381.aspx http://www.maconstateit.net/tutorials/aspnet20/ASPNET09/aspnet09-01.aspx I hope this may help u.
  • Re: how to update gridview using sql update command?

    Hi, Refer following link it will help u. http://www.aspsnippets.com/post/2009/06/25/ASPNet-GridView-Insert-Edit-Update-and-Delete-the-ADONET-way.aspx http://www.aspdotnetcodes.com/GridView_Insert_Edit_Update_Delete.aspx i hope this may help u.
    Posted to Data Presentation Controls (Forum) by manojlev on 7/6/2009
  • Re: question about Response.Redirect?

    HI, Retrieve your data from database when ur page request come as above then whatever field you are getting from the above querystring ie. project.aspx?projectlinkId=project1 QueryString is projectlinkId=project1 and assign this retrieved data to your fields as string projid = Request.QueryString["projectlinkId"].ToString(); From getting this projid you can retrive the data and assign it to ur Formcontrol. e.g. Textfield1.Text = "Retrieval field1 from database"; I hope this may
    Posted to Web Forms (Forum) by manojlev on 7/6/2009
Page 1 of 25 (245 items) 1 2 3 4 5 Next > ... Last »