Search

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

Matching Posts

  • Re: How to open 2 window website all at once.

    You just need to change the target window name. In the current code which you have given have same name in both the window... So try below code function winopen() { window.open (" www.detik.com","mywindow 1"); window.open (" www.okezone.com","mywindow 2"); } ------- Mark As Answer, if this post is helpful.
  • Re: calculating shipping charges

    It's interesting. BTW the standard prectice is you send the complete order information in email with proper formating or with attachment in some format like pdf/html/doc. Following are my suggestions which you can implement. Add link into the email like "Place Order" and there you put the complete link of the older page which opens his/her order. To open up the page, you need to automaticaly login by implementing the below points. Generate one GUI and store in the database. The same
    Posted to Web Forms (Forum) by Sunil R Gami on 7/3/2009
  • Re: How to upload a file on the hosting server.

    To upload files, you might need to use ftp. This could be very well possible using the WebRequest object. You can refer below code: public void uploadFileByFTP(string FullFTPPath , string FullLocalPath ) { var reqObj = WebRequest.Create(FullFTPPath); reqObj.Method = WebRequestMethods.Ftp.UploadFile; reqObj.Credentials = new NetworkCredential("UName", "PWD"); FileStream streamObj = File.OpenRead(FullLocalPath); byte[] buffer = new byte[streamObj.Length]; streamObj.Read(buffer,
    Posted to Web Forms (Forum) by Sunil R Gami on 7/3/2009
  • Re: Need Help accessing non visible grid view column value

    Hi, Instead of using the extra column of the grid. Try to use the label field as non visible in the grid view. And assign the value to it. Now try to access it with row.Cells[0].FindControl( "lbl Name " ). --- SuNiL
    Posted to Web Forms (Forum) by Sunil R Gami on 7/2/2009
  • Re: Checking if file exists recursively

    You can check the file is exist with below code if(File.Exists(MapPath(“~/YourFolderName/” + YourFileName.extention))) and then you can use the below logic to append the number with file name and put the check in the loop till you didn't get the file with the name Random RandomGenerator = new Random (); int num = RandomGenerator.Next(1, 100); Or else if you want to go by the sequance for the file name number then you can use the same loop and put one counter which increment each time and use
    Posted to Web Forms (Forum) by Sunil R Gami on 7/2/2009
  • Re: How to display artilce on webpage ? Any Idea how to deal with it.?

    Don't know how is your database structure but if its have more than step then you can go with asp.net wizard kind of control. Which gives you flexibility to split your article in to more than one part. Or else if your article don't have steps then go by just rendering simple HTML in grid view.
    Posted to Web Forms (Forum) by Sunil R Gami on 7/2/2009
Page 1 of 1 (6 items)