Click here to Skip to main content
16,012,223 members

Comments by Member 12693375 (Top 12 by date)

Member 12693375 20-Jul-17 6:43am View    
Wrong Answer Sir u can check it practically
string input1 = "8,16,9,18,19";
string output1 = input1.Substring(input1.IndexOf(',') + 2);

It gives me output like this: "6,9,18,19";
Member 12693375 12-Apr-17 2:13am View    
I m making a test.asmx web service for uploading the image to folder And using the code
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void Update_Profile1(HttpPostedFileBase filepost, string User_Id)
{
if (filepost != null)
{
string fileName = Path.GetFileName(filepost.FileName);
filepost.SaveAs(Server.MapPath("~/Images/") + User_Id + fileName);
}
}
Member 12693375 12-Apr-17 0:40am View    
i already granted to my folder then what next?
Member 12693375 12-Apr-17 0:39am View    
Thanks for your answer.but not happy and request to you please do not copy paste the code from somewhere to here,if u do not know the answer.
Member 12693375 5-Apr-17 6:45am View    
Any Solution?????