Search

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

Matching Posts

  • Gridview Inside a gridview

    Hi, How should i fire the events of gridview which resides inside of another gridview. Regard's Sai..
    Posted to Data Presentation Controls (Forum) by alladi.sai on 1/21/2008
  • Re: How to hide or disable the Internet Explorer's navigation tool bar

    Hi, write the below code in the .Aspx design page in form header seaction.It won't allow the user to go back. <Script> window.history.forward(1); </Script> _________________________________________________ If this one helps u Mark As Answer.
    Posted to Getting Started (Forum) by alladi.sai on 1/15/2008
  • Re: how to call a .net function with a parameter in javascript?

    Hi , If u want ot call the serverside function at client side you need to use ajax technology or u nedd to implement the ICallbackEventHandler in your page . This interface contains a two events those are ICallbackEventHandler.GetCallbackResult(), ICallbackEventHandler.RaiseCallbackEvent(string eventArgument). You need to implement these two events. __________________________________________________________ If this one helps you marks As a Answer.
    Posted to Getting Started (Forum) by alladi.sai on 1/7/2008
  • Re: Trying to send an email from a web form

    Hi, Go through with this code MailMessage msg = new MailMessage(); msg.To.Add(new MailAddress(txtTo.Text)); msg.From =new MailAddress(txtFrom.Text); msg.Subject = txtSubject.Text; msg.Body = txtMasg.Text; if (FileUpload1.HasFile==true) { msg.Attachments.Add(new System.Net.Mail.Attachment(FileUpload1.PostedFile.InputStream,FileUpload1.PostedFile.FileName)); } try { SmtpClient objsm = new SmtpClient("10.1.68.17"); //Smtp mail server IP // objsm.DeliveryMethod = SmtpDeliveryMethod.Network;
    Posted to Web Forms (Forum) by alladi.sai on 1/4/2008
  • Re: Adding data into same row

    Hi, Create a new datacolumn and add it to the datatable.After that taking that coulmn in that perticuler table and assign the value .Then add row to the table. _____________________________________________________________ If it helps you mark as Answer.
    Posted to Data Presentation Controls (Forum) by alladi.sai on 1/4/2008
  • Re: Hoe to Retrieve Gridview cell data?

    in rowdatabound find out that perticular cell and check the text of that if empty do the thing. ______________________ if it helps mark as Answer.
    Posted to Data Presentation Controls (Forum) by alladi.sai on 1/4/2008
  • Re: Gridview

    Hi, As per u r senario save the pictures in one folder and save that path in to the databse.in grid view take the image control and bind the socure of image is datatable columnname. ____________________________________ If it helps u mark as Answer.
    Posted to Data Presentation Controls (Forum) by alladi.sai on 1/4/2008
  • Re: website real time data access from sql server

    Hi, Don't worry about the data .When ever u update the data in database automatically that will affect to the useres who will access the site. You need to maintain the connection string is constant.In u r application if u r using the caching technology then u need to take the necceray stepts to update the cache (using Sqlcache dependancy technique). _______________________________________________________ If this one helps u mark as Answer.
    Posted to Getting Started (Forum) by alladi.sai on 1/4/2008
  • Re: Problems with Calendar Tool !

    Hi, when the data comes from databse bind that data to textbox text property or label text property or what ever the control. second when u select the date form callender control agin reassign the things to control and button clik event save the data back to server. In my suggestion use javasript callender control which is more user friendly and it will work at client side only. ______________________________________________________ If this one helps you mark as Answer.
    Posted to Web Forms (Forum) by alladi.sai on 1/2/2008
  • Re: BirthDay Alerts

    Hi, You need to add one filed in to the table like DOB ( date of birth) along with user ID when user logged with his userid and password .If successfully login chek weter the DOB and System date is Equal if ti is just give a popup message. ___________________________________________________ If this one is help full mark as a Answer
    Posted to Getting Started (Forum) by alladi.sai on 1/2/2008
Page 1 of 4 (38 items) 1 2 3 4 Next >