How to get detail dscription of error numbers in VB6 Thank in advance
sacheesach
Posts
-
Error number description -
Deployment of ASP.Net gives ERROR:((Hi All, I am very new to ASP.NET, I've developed a simple ASP.Net Project with only one page "DEFAULT.ASPX", and uploaded on the site using "PUBLISH TO WEB" option from Menu. But when I open the site, it gives an Application Error and gives me option to correct the "customerrors" tag. I've tried all option but it didn't turn up. please help me out Thanks
-
Compilation in VWD 2008Thanks for the reply. But now can u tell me how to get that .dll files. as im not getting it in visual Web developer 2008. Whether it support making .dll or not..?
-
Compilation in VWD 2008how do i compile my project to create bin folder files. Actully i want to know what are all files required for a website to get it displayed on internet...?
-
visual studio .net and visual web developer 2005Sorry to say but still im getting the same error. I thought VWD2005 is not generating bin folder which according to my information is necessary. Please Comment and help.
-
visual studio .net and visual web developer 2005Where is that EXTRA LINE?
-
visual studio .net and visual web developer 2005I developed a web application in VWD2005 and uploaded on net. But i got an error, which is "An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. " What to do?? And when i transfered it to Visual studio .net IT WONT WORK AT ALL.. What to do...?
-
visual studio .net and visual web developer 2005What should i add... "BR"...?
-
visual studio .net and visual web developer 2005I developed a web application in VWD2005 and uploaded on net. But i got an error, which is "An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. " What to do?? And when i transfered it to Visual studio .net IT WONT WORK AT ALL.. What to do...?
-
How to Code for Inserting Data into SQL using C# [modified]Sir, Thanks for your suggestions. It was a silly mistake committed by my new programmer. In fact the Permissions (Select, Insert, Delete, Update etc.) on the Categories Table were unchecked and this was the reason the error was given. Thank you again for your kind support. Sachin Jain
-
How to Code for Inserting Data into SQL using C# [modified]Dear Sir, Thank you very much for your quick reply. I would like to mention that these lines have been coded by seeing Microsoft Help and I have not used the Wizard for creating this. The problem that this code doesn't give any error, but at the same time data is not inserting in table. Please help me in this regard. Thanks, Sachin Jain
-
How to Code for Inserting Data into SQL using C# [modified]I am trying to insert Data in SQL Database using C#, it's not giving any error but at the same time no rows are getting updated in my database. private void Button1_Click(object sender, System.EventArgs e) { SqlConnection myConnection = new SqlConnection("server=sbs;database=bansal;Trusted_Connection=Yes"); SqlCommand myCommand = new SqlCommand("InsertCategory", myConnection); myCommand.CommandText = "InsertCategory"; myCommand.CommandType = CommandType.StoredProcedure; myCommand.Parameters.Add(new SqlParameter("@CategoryName",SqlDbType.NChar, 15)); myCommand.Parameters["@CategoryName"].Value = "Ambarish"; myCommand.Connection.Open(); try { myCommand.ExecuteNonQuery(); } catch(SqlException e){} myCommand.Connection.Close(); } Following is the Stored Procedure: CREATE PROCEDURE InsertCategory ( @CategoryName nchar(15) ) AS INSERT INTO Categories (CategoryName) VALUES(@CategoryName) Table Name is Categories and has two Columns only: 1. CategoryName NChar 15 2. Identity Int 4 (Identity Seed is 1 starting from 1) Sachin Jain -- modified at 4:36 Saturday 4th August, 2007
-
Error while selection... [modified]Im getting this error "SELECT permission denied on object '_______', database 'name of database', owner 'dbo'." while connecting to database in SQL in asp.net help -- modified at 3:50 Tuesday 31st July, 2007
-
uploading asp.net files?http://msdn2.microsoft.com/en-us/asp.net/aa336619.aspx[^] This is the link from where i downloaded the web deployment tool and get it installed. But still no change in software. I gone through the other link(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/web_deployment_projects.asp[^]) of microsoft and according to them i had got web deployment toll installed. But im not finding it in my software. wat to do?
-
uploading asp.net files?I don't have "Publish Web Site" link in "Build" menu. And from where to download Deployment Project addon for Visual Studio ?
-
uploading asp.net files?Than plz tell, wat all files i upload?
-
uploading asp.net files?C:\Documents and Settings\administrator\My Documents\Visual Studio 2005\WebSites\feedback this is my folder where website reside. There is no bin folder.
-
uploading asp.net files?bin folder path is C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin and the dll files are... 1.mscorcfg.dll 2.mscormmc.dll 3.RequiredPermissions.dll 4.TlbRef.dll is it OK.
-
uploading asp.net files?From where to get .dll files?
-
uploading asp.net files?i completed my contact form and want to test it online. I got .net enabled site. but i dont know which are the files to upload and is there any specific folder in which files are to b upload? PLz help. thanks in advance Sachin