In Setup phase, I have a radio button page which have option read from text file. For Ex: A Language choices with radio button in which language option is read from text file. Please let's me know, How to customize radio button page. Thanks so much.
rockxuyenmandem
Posts
-
[Deployment] How to customize Radio button in deployment process. -
Timeout expired error >_< [modified]When I first login there is a error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding., I add a in web.config file, however the error still not be fixed. :(( Regards -- modified at 12:26 Saturday 19th May, 2007
-
Images in master page disappear when log out?Firstly I am very happy thanks all your comments :) , Howerver:
Prakash Kalakoti wrote:
Exclude the image folder from Authentication using following tag in web.config file.
My project has 5 web.config file, I modify those follow your intruction, but nothing changed, still same error :(( @Moreover: When I first login there is a error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. I don't know why, please help me, thanks and best regard:)
-
Images in master page disappear when log out?I don't understand why: When I log out, all image in my page (master page section) disappear ??? All image appear when I logged in! Please help me, thanks and best regard:)
-
The timeout period elapsed prior to completion of the operation or the server is not responding ???- I am Using VS 2005 so that I can't found path: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\Machine.config, I only found path: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Machine.config - In this file I am only found
so that it doesn't have properties as you said - How can I do now, please help me Thanks and best regard ! :-D
-
The timeout period elapsed prior to completion of the operation or the server is not responding ???I can't find machine.config, there is only web.config file, in this file I also can't find element called httpRuntime??? Can i solve this problem if I increase the Connect Timeout more (i.e like 60 or 90) Thanks and best regart ! ;)
-
The timeout period elapsed prior to completion of the operation or the server is not responding ???When I run my program written by C# ASP.NET 2.0 first time then my logo disappear and then there is error is: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding , I have to click back button and re-login then the logo appear and the error disappear In conclusion the error happen when I run my program in first time, How can I do to fix these bugs, Thanks alot and best regard !
-
Css doesn't apply to my pages.I use Css to apply to my lable control and it work well in design mode: http://i2.photobucket.com/albums/y26/rockxuyenmandem/1-1.jpg However when i view this page in browser Css doesn't apply changes: http://i2.photobucket.com/albums/y26/rockxuyenmandem/2-3.jpg Could someone give me the reason, thanks so much:)
-
Can not find OpenFileDialog control in the Web applicationI can't find OpenFileDialog control in the toolbox of the Web app, however i can find it in the Windows app, How can I do to use OpenFileDialog control in the Web app of ASP.NET ???
-
Operation must use an updateable query--> what error is?I have setted all account include IIS_WPG and ASPNET with full permission, but nothing is changed :((
I tried so hard and got so far
-
Operation must use an updateable query--> what error is?Yes I am using Access database, I can't unset the readonly, because i uncheck Readonly option of the project folder, but when I view the property of the folder again, It still Readonly :((
I tried so hard and got so far
-
Operation must use an updateable query--> what error is?I use Access database and i have setted the full control permission, but nothing is change, still error :((
I tried so hard and got so far
-
Operation must use an updateable query--> what error is?Of course, I have opened connection, I also include the space between the "Result5)" and 'values' keyword, but it still error with the same message :((
I tried so hard and got so far
-
Operation must use an updateable query--> what error is?Thanks for replying me, but it still error with message: Syntax error in INSERT INTO statement.
I tried so hard and got so far
-
Operation must use an updateable query--> what error is?CustCMD.CommandText = "INSERT INTO QuestionDetail(QuestionDetailID,DateofCreate, " & _ " Content,TimeofQuestion,OptionType,Answer1,Answer2,Answer3,Answer4,Answer5,Result1," & _ " Result2,Result3,Result4,Result5)Values('" & _ strQuestionDetailID & "','" & txtDate.Text & " ','" & strContent & "'," & _ intTimeofQuestion & "," & chkOptionType.Checked & ",'" & strAnswer1 & "','" & _ strAnswer2 & "','" & strAnswer3 & "','" & strAnswer4 & "','" & _ strAnswer5 & "'," & chkResult1.Checked & "," & chkResult2.Checked & "," & _ chkResult3.Checked & "," & chkResult4.Checked & "," & chkResult5.Checked & ")" Try objConn.OpenCnn(strConnection) CustCMD.Connection = objConn.Conn CustCMD.ExecuteNonQuery() --------------------------- I have error message:Operation must use an updateable query. when trying to insert a record into database, can everybody tell me what error is and how to solve it. Thanks everebody very much :-D
I tried so hard and got so far
-
How can I do to fix the error "Unable to start debugging on the web server"When I Debug any ASP.NET Applicaion 1.1, It is unable to Debug with the message below: "Error while trying to run project: Unable to start debugging on the web server" I have checked all of guides below however all of it not solve my problem, However I can Debug any ASP.NET Application 2.0, I found that When I have installed Visual Studio 2005, I unable to Debug any ASP.NET Application 1.1 Are there any conflict? How can I do to Debug ASP.NET 1.1 ??? Please help me!!! Thanks Alot Things to Check If you get an "Unable to start debugging on the Web server" error, try checking the following things: * Are you running a version of Windows that allows the Visual Studio debugger to automatically attach to a Web application? If not, you need to launch the application without debugging and manually attach to it. (For more information, see Manually Attaching and ASP.NET Debugging: System Requirements.) * Does your Web application have a Web.config file? o Does the Web.config file enable debug mode) by setting the debug attribute to true? For more information, see Debug Mode in ASP.NET Applications. o Does the Web.config file contain any syntax errors? You can check for syntax errors by running the Web application without debugging. (From the Debug menu, choose Start Without Debugging.) If there are syntax errors in Web.config, detailed information will be displayed. * You need to be a member of the Debugger Users group or an administrator if the ASP.NET worker process runs under your own user account. * You need to be a member of the Administrators group if the ASP.NET worker process runs under any other user account besides your own. * Did you create the project by specifying a specific IP address (100.20.300.400, for example)? Debugging a Web server requires NTLM authentication. By default, IP addresses are assumed to be part of the Internet, and NTLM authentication is not done over the Internet. To correct this problem: o When creating the project, specify the name of the machine on your intranet. -or- o Add the IP address (http://100.20.300.400) to the list of trusted sites on your computer. (From the Internet Explorer Tools menu, choose Internet Options, and then select the Security tab). * Does the machine running IIS server have Visual Studio .NET Remote Components installed? * Was IIS installed on the local machine (the machine running Visual Studio .NET) after Visual Studio .NET was installed? IIS should
-
How to Count number of specific dayFor example now is tuesday 20/6/2006, how can i do to cout the number of tuesday from 1/1/2006 to now. Help me huhuhu:(( I tried so hard and got so far
-
interesting Advance C# exercise:(...:((...:((
-
interesting Advance C# exerciseI known what you mean but... I haven't found any ways to do this exercise, i am begener and live in the country that IT is weak. My experience in C# is not really good. If you have time, plz help me. thankssssssss alot
-
interesting Advance C# exerciseHTTP has been In use by the WWW global Information Initiative since 1990 and nowadays It Is one of the most widely used protocols on the Internet HTTP application have historically allowed three different formats for the representation of date/time stamps (described In RFC 2616) 1. RFC 1123 format, for example Sun, 06 Nov 2005 08:49:37 GMT 2. RFC 1036 format, for example Sunday, 06-Nov-05 08:49:37 GMT 3. ANSI C's asctime() format, for example Sun Nov 6 08:49:37 2005 An Implementation Is not HTTP 1.1 compliant If It fails to understand one of the above date/time formats Question 1 You are require to write an HTTP 1.1 compliant program to parse a string containing one of the above date/time formats. The program must detect the date/time format automatically based on the Input string and store the result In the following object Class MyDate { public Int day; /*1 to 31*/ public Int month; /*1 to 12*/ public Int year; /*1970 to 9999*/ public Int hour; /*0 to 23*/ public Int minute; /*0 to 59*/ public Int second; /*0 to 59*/ public Int dayofweek; /* 0= Sun, 1=Mon,etc* / } Question 2 Develop a program to display the system date/time In the RFC 1123 format(as show In example) ===================================================== I have no idea to do this exercise, please help me. Thanks alot. Good luck.