Ok. Thanks for your responses.
Samiullah
Posts
-
PHP Header() error -
PHP Header() errorHi, As i am developing a small CRUD(create,read,update,delete) application. In this application the following errors persists. Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\WishList\index.php:3) in C:\xampp\htdocs\WishList\index.php on line 12 Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\WishList\index.php:3) in C:\xampp\htdocs\WishList\index.php on line 14 Can anyone provide solution for this one.
-
Object reference not set to an instance of an objectThe error as follow... Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: Line 720: private void InitConnection() { Line 721: this._connection = new global::System.Data.SqlClient.SqlConnection(); Line 722: this._connection.ConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["AdventureWorksConnectionString"].ConnectionString; Line 723: } Line 724: Source File: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\products\7bb3ee42\1a34f12b\App_Code.3orrxfoa.2.cs Line: 722
-
Object reference not set to an instance of an objectHi, As i have downloaded a small asp.net ajax project and i added this project to my visual studio 2005 and when i execute the project the error message "object reference not set to an instance of an object". and also i modified the connection string. The ASPNET.MDF file in server explorer is having the cross mark. can anyone provide solution for this. Thank in advance..
-
To Display details of the Row selected in the GridViewHi, My requirement is Assuming you have a button called ‘Select’ in your GridView with CommandName ‘Select’, to find out the row clicked and display the row’s details. Can anyone please suggest me. Provide some code. Thanks in advance.
-
I want to diplay particular records between two dates using nvarcharThanks for your immediate response. As iam new to sql server and its also my requirement to use the nvarchar thats why!
-
I want to diplay particular records between two dates using nvarcharHi, I have created a table and in that i have inserted some records. then i want to display the records between specified dates then how to do that. create table rough(checkeddate nvarchar(100)) These are the inserted values.. insert into rough values('1/01/2002') insert into rough values('3/01/2002') insert into rough values('12/01/2003') insert into rough values('11/09/2006') insert into rough values('8/01/2008') insert into rough values('1/01/2004') insert into rough values('1/01/2006') insert into rough values('1/21/2003') insert into rough values('1/31/2005') insert into rough values('1/11/2006') insert into rough values('1/01/2006') insert into rough values('1/01/2002') insert into rough values('1/01/2004') insert into rough values('1/01/2006') The output as follows mm/dd/yyyy ---------- 12/01/2003 11/09/2006 1/01/2006 1/21/2003 1/31/2005 1/11/2006 1/01/2006 1/01/2006 so my requirement is now i want to diplay particular records between two dates like as follows select * from rough where checkeddate between '1/01/2006' and '12/31/2006' Can anyone help me..
-
Error:Name cannot begin with the '<' character, hexadecimal value 0x3C.hi, Iam currently working with the login control when i executed my application then the following errors are rising. Error 1 Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 14, position 5. F:\ExampleLogin\Web.Config 14 Error 2 F:\ExampleLogin\Default.aspx: ASP.NET runtime error: Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 14, position 5. (F:\ExampleLogin\web.config line 14) F:\ExampleLogin\Default.aspx 1 1 F:\ExampleLogin\ Error 3 Expecting '>'. F:\ExampleLogin\Web.Config 14 5 F:\ExampleLogin\
-
Managing Session for the log In usersHi, As i am developing a application for login form. Whenever any user logged in then the user name shuld be displayed like in Yahoo. For example once a user logged with user id and password in Yahoo then while opening the page the user name will be displayed as Welcome user. so can anyone help me. How to do such a application. Thanks in advance.
-
3-Tier ArchitectureHi, I have a small doubt that, i want to create 3 seperate projects for 3 layers for my small web application. In that i dont want to place my BAL and DAL in the App_Code folder but i want to manage 3 seperate layers. So how to do that? Can anyone explain about it. Its urgent please let me know.
-
Error: Unable to start debugging on the web server.....Hi, Can anyone please provide solution for this one..The error is as follows.. Unable to start debugging on the web server. The server does not support debugging of ASP.NET or ATL Server applications. Click help for more information on how to enable debugging. you may also want to refer to the ASP.NET and ATL Server debugging topic in the online documentation.
-
web.config file related issueExample Code: Here is my code. Can any one try this...its urgrnt.
-
web.config file related issueIn the below code, what do i need to put in "stateConnectionString". What is the meaning of "stateConnectionString"? Can anyone provide solution for this one. Its urgent. stateconnectionstring="tcpip=127.0.0.1:42424" What do i need to place instead of "tcpip=127.0.0.1:42424" at stateConnectionString?
-
Error: Validation (Internet Explorer 6): Attribute 'MS_POSITIONING' is not a valid attribute of element 'body'.Hi, As i am expecting this error **"Validation (Internet Explorer 6): Attribute 'MS_POSITIONING' is not a valid attribute of element 'body'."**and also while iam switching to design mode then on all the controls "Error Creating Control" is visible. Can anyone provide solution for this one. Thanks in advance.
-
How to add the web project to VS.Net 2005?I have one doubt that i have one small project(web application) called "internetbanking" then i want to work with that project so how to execute that project by adding to my solution can you please provide me detailed description. Thanks in advance..
-
How to create the solution in the VS.Net 2005?Thanks Colin Angus Mackay for the immediate response. I have one more doubt that i have one small project called "internetbanking" then i want to work with that project so how to execute that project by adding to my solution can you please provide me detailed description.
-
How to create the solution in the VS.Net 2005?As i have a small doubt that in the VS.Net 2005 IDE how to create the solution for the project. Can anyone provide detailed explanation on this coz i am new to .net. Provide with example. Thanks in advance...
-
Cannot implicitly convert type 'System.DateTime' to 'string' error is risingHi, Can anyone tell me why the error is coming like "Cannot implicitly convert type 'System.DateTime' to 'string'"? When i work with the following code. Code: protected void Page_Load(object sender, EventArgs e) { Label1.Text = DateTime.Now; Label2.Text = DateTime.Now; Label3.Text = DateTime.Now; } Thanks in advance.
-
Why if i dont convert a integer to string the output will be coming?Thanks for your response. But actually i did this small program using visual studio 2005. In that how can i use the ILDASM tool. It can be used only when i work with command prompt know. Can you please suggest me....
-
Why if i dont convert a integer to string the output will be coming?Hi, As i have a small doubt that why if i don't convert a integer to a string using ToString() method then also the output is coming. can any one try this. Example Code: int year = 1998; string message = "Sandy was born in " + year.ToString();//Here if i remove the ToString() //also the code working properly System.Console.WriteLine(message); System.Console.ReadLine();