Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

pradeep kumarappagari

@pradeep kumarappagari
About
Posts
123
Topics
56
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Report Server Web service on public IP
    P pradeep kumarappagari

    Hi All, Is there any possibilities to have sql server on one IP which is not public due to security reasons and Report Server Web service on another IP which is public to access the deployed reports on SSRS. If it is possible please let me know the process of hosting Report Server Web service on public IP which can acces data from sql server database which is on another IP (Private). Please help me regarding this. Pradeep K.

    Pradeep Reddy

    Hosting and Servers database sql-server sysadmin hosting security

  • Restart system after Rollback
    P pradeep kumarappagari

    Hi, In my case, i need to prompt user to restart system after rollback in dot net web setup project. I am able to prompt user to restart system after install and uninstall, but no clue how to do it after rollback. Please help me in this.

    Pradeep Reddy

    ASP.NET help tutorial workspace

  • Error 1001. A configuration file cannot be created for the requested Configuration object
    P pradeep kumarappagari

    Hi, I am getting an error "Error 1001. A configuration file cannot be created for the requested Configuration object" while updating connection string in web.config file and save while web setup installation. I am not getting this error, if i make my target directory is wwwroot, but it is giving error if target directory is not wwwroot. Please help me regarding this.

    Pradeep Reddy

    ASP.NET help workspace

  • disable repair option in .net wensetup
    P pradeep kumarappagari

    Hi All, How to disable repair option in .net wensetup. please help me regarding this.

    Pradeep Reddy

    ASP.NET csharp help tutorial

  • Screen Resolution problem
    P pradeep kumarappagari

    mention sizes in percentages instead of mentioning sizes in px

    Pradeep Reddy

    ASP.NET help csharp asp-net tutorial question

  • Problem with file download link
    P pradeep kumarappagari

    Hi All, I have a download now button on aspx page, by clicking it need to prompt user to save the file which a movie file at server. i am using following code....

    string path = Server.MapPath("Movie/movie.zip");

        System.IO.FileInfo file = new System.IO.FileInfo(path);
    
        if (file.Exists)
        {
            Response.Clear();
    
            Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
    
            Response.AddHeader("Content-Length", file.Length.ToString());
    
            Response.ContentType = "application/zip";
    
            Response.WriteFile(file.FullName);
    
            Response.End();
          }
    

    this code is working fine in local system...but giving problem when i upload it in to my hosting server. Please help me regrading this.

    Pradeep Reddy

    ASP.NET help sysadmin hosting

  • Problem with mdi form controls
    P pradeep kumarappagari

    i have a control in mdi form. when i open a child form then the control in mdi form is overlaping the child form. please help me to solve this issue.

    Pradeep Reddy

    Windows Forms help

  • problem related to picture upload
    P pradeep kumarappagari

    for (int i = 0; i < uploadedFiles.Count; i++) { HttpPostedFile userPostedFile = uploadedFiles[i]; if(userPostedFile.HasFile) { userPostedFile.SaveAs(filepath + "\\" + System.IO.Path.GetFileName(userPostedFile.FileName)); } }

    Pradeep Reddy

    ASP.NET help question

  • paggin html
    P pradeep kumarappagari

    http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html[^] http://forums.digitalpoint.com/showthread.php?t=726963[^] this links may help u ... :-O

    Pradeep Reddy

    ASP.NET csharp html database help

  • radio button issue in asp.net
    P pradeep kumarappagari

    http://www.codeproject.com/KB/webforms/GridViewRadiobuttons.aspx[^] this will help u :-O

    Pradeep Reddy

    ASP.NET csharp asp-net sysadmin help

  • Cannot copy DBFile: It is being used by another person or program??
    P pradeep kumarappagari

    stop sqlserver first and then u copy dbfile in some other place. with out stoping sqlserver u can not copy .mdf and .ldf files.

    Pradeep Reddy

    ASP.NET database question sql-server sysadmin help

  • Screen resolution problem in asp.net application
    P pradeep kumarappagari

    all the sizes of forms and tables and some controls u show in form should mention in percentage wise. Ex : declare width : 100% instead of declaring width : 700px this will work for u for all the resolution types.

    Pradeep Reddy

    ASP.NET help question csharp asp-net

  • image compress
    P pradeep kumarappagari

    Can any one look for image compress code in c# code. If we select one folder. Then it should read each image and compress the image size. Even if it converts tiff format then also no problem. for example if an image size is 200kb, i need to compress it to 80kb.

    Pradeep Reddy

    ASP.NET csharp help tutorial

  • Tracking URL links visited in a browser
    P pradeep kumarappagari

    Thank U :-O

    Pradeep Reddy

    ASP.NET help tutorial

  • Tracking URL links visited in a browser
    P pradeep kumarappagari

    actually i need to track url's visited by a user. one service should be running in system and it should track the urls which are visited by a user.

    Pradeep Reddy

    ASP.NET help tutorial

  • Tracking URL links visited in a browser
    P pradeep kumarappagari

    Hi, Any one help me regarding how to track the url links which are visited by a browse. Thanks in advance.

    Pradeep Reddy

    ASP.NET help tutorial

  • Exporting multiple GridView to multiple sheets in single excel file
    P pradeep kumarappagari

    Hi... How to Exporting multiple GridView to multiple sheets in single excel file. please help me.

    Pradeep Reddy

    ASP.NET help tutorial

  • Save excel file as a web page using C#
    P pradeep kumarappagari

    Hi all... How to save an excel file as a web page using c#? please help me....

    Pradeep Reddy

    ASP.NET csharp help tutorial question

  • Extract Image from Excel Sheet
    P pradeep kumarappagari

    Hi all... How to extract picture from excel sheet to a jpg file...

    Pradeep Reddy

    ASP.NET tutorial

  • read image from excel file....
    P pradeep kumarappagari

    thank u.... :-O

    Pradeep Reddy

    ASP.NET csharp help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups