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
J

jitu gupta

@jitu gupta
About
Posts
16
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ASP page Error
    J jitu gupta

    Hello experts I have a directory in InetPub/WWWRoot/ASPApp/a.asp file with code <%="Hello World"%> ASPApp is WebShared. Am getting following error. ------------------------------------------------------------------------------------------------ Error Type: Active Server Pages, ASP 0223 (0x80004005) METADATA tag contains a Type Library specification that does not match any Registry entry. /ASPApp/global.asa, line 2 Browser Type: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322) Page: GET /ASPApp/a.asp

    ASP.NET csharp dotnet sysadmin windows-admin regex

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    Yusuf, Actually my IIS dont have these option "Application pools" and "Service web extentions" . please see your link which you sent me. what i need to do ...

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    HI, i am created one test solution for checking purpose whether asp is working or not . I am getting this error in test application Server Error in '/WebSite1' Application. -------------------------------------------------------------------------------- This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. Requested URL: /WebSite1/Default2.asp

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Please suggest me what i need to do. thanks.....

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Thanks...

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    no i am not using server.transfer this is my code Response.Cache.SetCacheability(HttpCacheability.NoCache); if (HttpContext.Current.Items[Constant.Authorization] == null || !(bool)HttpContext.Current.Items[Constant.Authorization]) Response.Redirect(Constant.AccessRequestPage);

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    i am using the same code for calling the .aspx page but when i am trying to call those aspx page which having the asp file call those are not working. please let me know.

    ASP.NET help csharp asp-net sysadmin windows-admin

  • Getting this exception : This operation requires IIS integrated pipeline mode
    J jitu gupta

    Hi all, I am using iis 5.1 and my application is in two part one is in asp.net net and another one is asp.net + ASP. My first application is woking fine but when i am calling the asp page then getting the server application error 404 . I try to debug the code then getting this exception . system.platformnotsupported exception and "This operation requires IIS integrated pipeline mode". Please help me out. its very urgent i am working with this error since one week. Thanks with regards, Jitendra

    ASP.NET help csharp asp-net sysadmin windows-admin

  • how to show particular position in aspx page
    J jitu gupta

    Vidyasankar, please spacify the smart navigation true . This will resolve your problem. jitendra

    ASP.NET tutorial

  • how to handlw datagrid keypressevent
    J jitu gupta

    Yes it is possible........ i am writing some code hope which is helpful for u.. fucntion check() { var objItemDate; objItemDate = document.getElementById("dgPublish__ctl" + i + "_txtAuditDate_txtDate"); } first u find the text box in itemdatabound then call check function. and perform whaever u want. call like this: txtAuditDate.Attributes.Add("Onkepress", "javascript:return check();") if u have still problem please let me know. Thanks and Regards, jitendra

    ASP.NET

  • ASP.NET Four Controls
    J jitu gupta

    hi, in your model class two property is defined like this private int caseId; private string dbnumber; public int CaseId { get{return caseId;} set{caseId=value;} } public string DBNumber { get{return dbnumber;} set{dbnumber=value;} } this is your two property in model class and u can access this two property by using model class object like this Model.Case objModelCase = new Model.Case(); case is the model class and objModelCase is the object of case class objModelCase.DBNumber=txtDrNumber.Text; objModelCase.CaseId=txtCase.Text; and finally u can paas this objModelCase object to database. i think this will solve your problem. "It is not enough to have a good mind. The thing is to use it well." jitendra

    ASP.NET csharp asp-net database question

  • ASP.NET Four Controls
    J jitu gupta

    Hi , yur can use model class for that. create one class which contains all set and get property and then create object of that calss that object will contain all parameter and finally pass this object to the database . please let me know if u required more help i will send u code . :) "It is not enough to have a good mind. The thing is to use it well." Thanks Jitendra

    ASP.NET csharp asp-net database question

  • type conversion
    J jitu gupta

    Hi , u can convert string to double like this. string s = "10"; double a =Convert.ToDouble(s); i think this will help u . bye

    ASP.NET csharp asp-net help tutorial

  • DropDownList coloring in ASP.Net
    J jitu gupta

    Hi Anant, this is the code which solve your problem. private void Page_Load(object sender, System.EventArgs e) { if (!IsPostBack) { strConn="Data Source=localhost;uid=sa;pwd=;Initial Catalog=northwind"; mycn = new SqlConnection(strConn); myda = new SqlDataAdapter ("Select * FROM CategoryTable ", mycn); ds = new DataSet(); myda.Fill (ds,"Table"); DropDownList1.DataSource =ds.Tables [0] ; DropDownList1.DataTextField =ds.Tables[0].Columns["CategoryName"].ColumnName.ToString(); DropDownList1.DataValueField =ds.Tables[0].Columns["CategoryId"].ColumnName.ToString(); DropDownList1.DataBind () ; for (int i =0;i < DropDownList1.Items.Count ;i++ ) { DropDownList1.Items[i].Attributes.Add("style", "color:" + ds.Tables[0].Rows[i]["CategoryColor"].ToString () ); } } } Hope this will solve your problem. please let me know if any problem arise bye

    ASP.NET csharp javascript asp-net help tutorial

  • Print multiple PDF files at the same time
    J jitu gupta

    hi, are you creating a pdf file using asp.net,c# . i am asking u this question because i have a one api which create pdf file through coding so u can take print out of whole pdf file. if u are fine with this i will send u the api. cheers....

    ASP.NET question csharp asp-net sysadmin help

  • solution to PostBack? [modified]
    J jitu gupta

    hi, i think you are not giving the currect textbox name or textbox is not present check the textbox name. thanks

    ASP.NET help question
  • Login

  • Don't have an account? Register

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