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
jitu gupta
Posts
-
ASP page Error -
Getting this exception : This operation requires IIS integrated pipeline modeYusuf, 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 ...
-
Getting this exception : This operation requires IIS integrated pipeline modeHI, 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
-
Getting this exception : This operation requires IIS integrated pipeline modemy 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.....
-
Getting this exception : This operation requires IIS integrated pipeline modemy 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...
-
Getting this exception : This operation requires IIS integrated pipeline modeno 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);
-
Getting this exception : This operation requires IIS integrated pipeline modei 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.
-
Getting this exception : This operation requires IIS integrated pipeline modeHi 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
-
how to show particular position in aspx pageVidyasankar, please spacify the smart navigation true . This will resolve your problem. jitendra
-
how to handlw datagrid keypresseventYes 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 Four Controlshi, 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 Four ControlsHi , 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
-
type conversionHi , u can convert string to double like this. string s = "10"; double a =Convert.ToDouble(s); i think this will help u . bye
-
DropDownList coloring in ASP.NetHi 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
-
Print multiple PDF files at the same timehi, 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....
-
solution to PostBack? [modified]hi, i think you are not giving the currect textbox name or textbox is not present check the textbox name. thanks