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
K

krishna19

@krishna19
About
Posts
39
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ASP.Net web application not opening.
    K krishna19

    Hi all. When i tried to copy my web application folder and create a new copy in the wwwroot folder, with different name and settings, i am getting the following error, it was opening hitherto and i was able to make some changes and build them as well. After i closed the IDE and reopened it, i am getting this error. unable to get the project file from web server.Unable to open web project 'XXX' .The file path 'C:\INETPUB\WWWROOT\XXX' does not correspont to the URL 'http:\localhost\XXX'.The two need to map to the same server location.HTTP Error 401 : Access denied I checked the webinfo file and the .sln file in notepad and found that the path is mapped correctly. Any advise will be greatly appreciated. Many Thanks, Sid

    If you fail for the first time , call it version 1.0.

    ASP.NET

  • how to validate dropdownlist
    K krishna19

    You can place a required filed validator. and after binding the drop down list, add the two lines: DropDownList1.Items.Insert(0,"Select One"); DropDownList1.Items[0].Value = "";

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp asp-net database visual-studio json

  • is our application works if we remove the web.config ?
    K krishna19

    Yes. It will.....It will inherit the settings defined in the Machine.config file. Whatever we include in the web.config over ride the settings in machine.config. web.config is specific for application..or sometimes part of the application. It is not mandatory. But machine.config file is also absent, then it will not work. I dont think you can remove Machine.config file without putting at risk all your work.

    If you fail for the first time , call it version 1.0.

    ASP.NET question

  • Urgent help
    K krishna19

    In the Page directive in HTML view of your page, add the following SmartNavigation = "True"

    If you fail for the first time , call it version 1.0.

    ASP.NET help question

  • portal
    K krishna19

    Hi , You will need to host your 'portal' on a web server. There are several hosting services available....you can check them out..... Refer MSDN.... You need to create a web setup project to deploy your application on the web server......

    If you fail for the first time , call it version 1.0.

    ASP.NET help question csharp asp-net

  • I need knowhow/article about adding input controls dynamically in asp.net
    K krishna19

    http://aspnet.4guysfromrolla.com/articles/092904-1.aspx[^]

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp html css asp-net database

  • I need knowhow/article about adding input controls dynamically in asp.net
    K krishna19

    http://www.dotnetjohn.com/articles.aspx?articleid=44[^] Also add the call to the function that adds your controls in Page_OnInit function in web form generated code.

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp html css asp-net database

  • asp.net+http soap+sql server
    K krishna19

    Hi, Use XML files and ftp to transfer the files from one server to another.

    If you fail for the first time , call it version 1.0.

    Web Development question csharp asp-net database sql-server

  • Dropdown list in windows forms
    K krishna19

    Hi, I am new to windows forms prog. I want to use a drop down list in windows form like they do in web forms. I tried combobox and set its dropdown style to drop down list but when i try to bind data to it from a database by setting its datasource as ad dataset, i am seeing only this in the combo box. System.Data.DataViewMember. Please help...

    If you fail for the first time , call it version 1.0.

    C# asp-net database winforms help announcement

  • asp.net webservic
    K krishna19

    Hi, Web services are similar to web applications in the sense that they run on a server and are accessible from any client.The only difference is they do not have a user interface as do web applications. For more on web services, http://www.oreillynet.com/lpt/a//webservices/2002/02/12/webservicefaqs.html[^]

    If you fail for the first time , call it version 1.0.

    Web Development csharp asp-net tutorial question

  • A failure occurred while attempting to start the compilation.
    K krishna19

    Hi all, I am trying to change code and recompile dll's of a C#.Net class library. But even before i change any thing i am getting this error: A failure occurred while attempting to start the compilation. Please help me.. Thanks in anticipation. Kris.

    If you fail for the first time , call it version 1.0.

    C# csharp help announcement

  • Ending Session in asp vbscript
    K krishna19

    Hi all, I have a web application. I need to end the application session and database connections on click of a logout button.The logout button is on a header page common to the entire application, and is currently ending only the current session by destroying the session cookie. I am new to asp ...please help me... Thanking you in anticipation.

    If you fail for the first time , call it version 1.0.

    Web Development database help announcement

  • Problem with text wrapping
    K krishna19

    Are you using table? Enclose your label in table row and column, specify the width of the TD.

    If you fail for the first time , call it version 1.0.

    Web Development help tutorial csharp asp-net question

  • create word document using asp vb script
    K krishna19

    Hi , Can any body tell how to create a word document which takes content from .xsl files and has header and footer for all pages... The front end is asp vb script......

    If you fail for the first time , call it version 1.0.

    Web Development tools xml tutorial announcement

  • Is there any way to upload file without using file upload control in asp.net ?????
    K krishna19

    You can use System.IO.File It has many functions to create , modify and move files... hope this helps....

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp asp-net question

  • Page footer in xsl
    K krishna19

    Hi all, We have an xsl file from which we are reading content and displaying it in a .aspx page. We want to include a footer at the end of every page in the print preview. We are facing a lot of problems in the positioning of the footer. Is there any way to ensure that the footer comes at the end of the page irrespective of the page content ala footer in word? Thanks in anticipation.

    If you fail for the first time , call it version 1.0.

    XML / XSL xml question announcement

  • Authentication in asp vbscript
    K krishna19

    Hi all, We have a web application in asp vbscript. I need to ensure that the access to different modules in the application be determined by the credentials of the user logged in.. Now any user is able to access any page once logging in...if he knows the URL.. The business logic is written in .Net but the front end pages are pure asp. Thanks in anticipation...

    If you fail for the first time , call it version 1.0.

    Web Development csharp security business announcement

  • How to delete items in gridview with one delete button
    K krishna19

    Add the delete button in template column. In Initialise_components, wire the delete link for the datagrid. datagrid.deletecommand = .... (press tab twice) Them write the code to delete the row in the function generated.

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp asp-net help tutorial

  • How to open a notepad in asp.net web application
    K krishna19

    You can use dos batch file to create and edit notepad or word document or any other type of document... Then run the batch file on any button click using system.diagnostics.process..

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp asp-net tutorial

  • Page Refresh in ASP causing problem
    K krishna19

    Hello all, Sub: Duplicate Mails - Generated on press of Refresh button in Browser. HOW TO VALIDATE THIS IN ASP not ASP.NET. We created a application code using asp vb script which sent mail with attachment once the people proceeds for order. The problem we are facing is we are getting duplicate mail after once we refresh the confirm button. so we are getting more mails when ever we refresh the pages. This should be stopped. Please advice. Thanks and Regards, kris

    If you fail for the first time , call it version 1.0.

    ASP.NET csharp asp-net tools help tutorial
  • Login

  • Don't have an account? Register

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