The wait operation timed out. ASPHow to solve The wait operation timed out Error #asp.net #sql serverASP.NET MVC Upload file time outThe connection was reset ASP.NETwhat is java.io.EOFException, Message: Can not read response from server. Expected to read 4 bytes, read 0 bytesClassic ASP SELECT * WHERE x AND xUnable to connect to SQL Server session database - The wait operation timed outHow to prevent a long running request in ASP.NET 4.5 from timing outHow to handle multiple connection to asp projectHow can a slow internet on client side be a reason for server time out exception in asp.net?Asp.net web form “The wait operation timed out”

Is there a working SACD iso player for Ubuntu?

Approximating irrational number to rational number

Create all possible words using a set or letters

What are the purposes of autoencoders?

Can someone explain how this makes sense electrically?

Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?

Is there a name for this algorithm to calculate the concentration of a mixture of two solutions containing the same solute?

Why is so much work done on numerical verification of the Riemann Hypothesis?

Why did the EU agree to delay the Brexit deadline?

Aragorn's "guise" in the Orthanc Stone

Is it safe to use olive oil to clean the ear wax?

Not using 's' for he/she/it

Why did the HMS Bounty go back to a time when whales are already rare?

How can "mimic phobia" be cured or prevented?

How much character growth crosses the line into breaking the character

Why does the Sun have different day lengths, but not the gas giants?

How should I respond when I lied about my education and the company finds out through background check?

Strong empirical falsification of quantum mechanics based on vacuum energy density

Calculating Wattage for Resistor in High Frequency Application?

The screen of my macbook suddenly broken down how can I do to recover

What was the exact wording from Ivanhoe of this advice on how to free yourself from slavery?

Intuition of generalized eigenvector.

Why is it that I can sometimes guess the next note?

Freedom of speech and where it applies



The wait operation timed out. ASP


How to solve The wait operation timed out Error #asp.net #sql serverASP.NET MVC Upload file time outThe connection was reset ASP.NETwhat is java.io.EOFException, Message: Can not read response from server. Expected to read 4 bytes, read 0 bytesClassic ASP SELECT * WHERE x AND xUnable to connect to SQL Server session database - The wait operation timed outHow to prevent a long running request in ASP.NET 4.5 from timing outHow to handle multiple connection to asp projectHow can a slow internet on client side be a reason for server time out exception in asp.net?Asp.net web form “The wait operation timed out”













12















I created an internal website for our company. It run smoothly for several months and then I made a major update due to user suggestion. When I run in live, it run normally. Then suddenly one of my user from japan sending me an "The Wait operation timed out." error. When I check access that certain link, It run normally for me and some other who I ask to check if they access that page. I already update the httpRuntime executionTimeout but still no luck. Is it the error come from database connection? If I increase the timeout in the database connection it will be fix the problem?










share|improve this question


























    12















    I created an internal website for our company. It run smoothly for several months and then I made a major update due to user suggestion. When I run in live, it run normally. Then suddenly one of my user from japan sending me an "The Wait operation timed out." error. When I check access that certain link, It run normally for me and some other who I ask to check if they access that page. I already update the httpRuntime executionTimeout but still no luck. Is it the error come from database connection? If I increase the timeout in the database connection it will be fix the problem?










    share|improve this question
























      12












      12








      12


      3






      I created an internal website for our company. It run smoothly for several months and then I made a major update due to user suggestion. When I run in live, it run normally. Then suddenly one of my user from japan sending me an "The Wait operation timed out." error. When I check access that certain link, It run normally for me and some other who I ask to check if they access that page. I already update the httpRuntime executionTimeout but still no luck. Is it the error come from database connection? If I increase the timeout in the database connection it will be fix the problem?










      share|improve this question














      I created an internal website for our company. It run smoothly for several months and then I made a major update due to user suggestion. When I run in live, it run normally. Then suddenly one of my user from japan sending me an "The Wait operation timed out." error. When I check access that certain link, It run normally for me and some other who I ask to check if they access that page. I already update the httpRuntime executionTimeout but still no luck. Is it the error come from database connection? If I increase the timeout in the database connection it will be fix the problem?







      sql asp.net connection






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 27 '16 at 1:44









      VicVic

      1021316




      1021316






















          4 Answers
          4






          active

          oldest

          votes


















          13














          If you found the exact error "The wait operation timed out" then it is likely you have a database call that took longer than expected. This could be due to any number of things:



          1. Transient network problem

          2. High SQL server load

          3. Problem with SAN, RAID, or storage device

          4. Deadlock or other form of multiprocess contention

          You haven't shared enough information to troubleshoot. The way I would manage this would be to check for other occurrences of the problem and see if there is a pattern, e.g. if the problem occurs at a certain time of day.



          Certainly increasing the timeout is not a bad idea (if it is currently set pretty low) and may resolve the problem in and of itself.






          share|improve this answer






























            13














            Remember to increase the connection timeout AND the command timeout:



            SqlConnection(@"Data Source=SQLSERVER;Initial Catalog=MYCATALOG;Integrated Security=True;Connection Timeout=1000");//huge timeout


            and then:



            com.CommandTimeout = 950;//or whatever





            share|improve this answer


















            • 1





              is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

              – Vic
              Aug 27 '16 at 2:39






            • 1





              No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

              – Shannon Holsinger
              Aug 27 '16 at 5:32






            • 6





              At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

              – Brian
              Sep 7 '17 at 21:19











            • @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

              – Suncat2000
              Mar 19 '18 at 15:10



















            0














            It can also be another issue. For instance, if you run a lot of queries during one connection opened and it exceeds the connection lifetime. Then you need to set Connection Lifetime property in your connection string. Here is the description:




            When a connection is returned to the pool, its creation time is
            compared with the current time, and the connection is destroyed if
            that time span (in seconds) exceeds the value specified by Connection
            Lifetime. This is useful in clustered configurations to force load
            balancing between a running server and a server just brought online. A
            value of zero (0) causes pooled connections to have the maximum
            connection timeout.







            share|improve this answer






























              0














              I fixed this error by finding the exact procedure in event viewer where timeout was happening.



              Connected to the same Database in SSMS and ran:



              exec sp_recompile 'Procedure name'


              It showed the below message:



              Object 'Procedure name' was successfully marked for recompilation.






              share|improve this answer






















                Your Answer






                StackExchange.ifUsing("editor", function ()
                StackExchange.using("externalEditor", function ()
                StackExchange.using("snippets", function ()
                StackExchange.snippets.init();
                );
                );
                , "code-snippets");

                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "1"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                draft saved

                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f39176692%2fthe-wait-operation-timed-out-asp%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                13














                If you found the exact error "The wait operation timed out" then it is likely you have a database call that took longer than expected. This could be due to any number of things:



                1. Transient network problem

                2. High SQL server load

                3. Problem with SAN, RAID, or storage device

                4. Deadlock or other form of multiprocess contention

                You haven't shared enough information to troubleshoot. The way I would manage this would be to check for other occurrences of the problem and see if there is a pattern, e.g. if the problem occurs at a certain time of day.



                Certainly increasing the timeout is not a bad idea (if it is currently set pretty low) and may resolve the problem in and of itself.






                share|improve this answer



























                  13














                  If you found the exact error "The wait operation timed out" then it is likely you have a database call that took longer than expected. This could be due to any number of things:



                  1. Transient network problem

                  2. High SQL server load

                  3. Problem with SAN, RAID, or storage device

                  4. Deadlock or other form of multiprocess contention

                  You haven't shared enough information to troubleshoot. The way I would manage this would be to check for other occurrences of the problem and see if there is a pattern, e.g. if the problem occurs at a certain time of day.



                  Certainly increasing the timeout is not a bad idea (if it is currently set pretty low) and may resolve the problem in and of itself.






                  share|improve this answer

























                    13












                    13








                    13







                    If you found the exact error "The wait operation timed out" then it is likely you have a database call that took longer than expected. This could be due to any number of things:



                    1. Transient network problem

                    2. High SQL server load

                    3. Problem with SAN, RAID, or storage device

                    4. Deadlock or other form of multiprocess contention

                    You haven't shared enough information to troubleshoot. The way I would manage this would be to check for other occurrences of the problem and see if there is a pattern, e.g. if the problem occurs at a certain time of day.



                    Certainly increasing the timeout is not a bad idea (if it is currently set pretty low) and may resolve the problem in and of itself.






                    share|improve this answer













                    If you found the exact error "The wait operation timed out" then it is likely you have a database call that took longer than expected. This could be due to any number of things:



                    1. Transient network problem

                    2. High SQL server load

                    3. Problem with SAN, RAID, or storage device

                    4. Deadlock or other form of multiprocess contention

                    You haven't shared enough information to troubleshoot. The way I would manage this would be to check for other occurrences of the problem and see if there is a pattern, e.g. if the problem occurs at a certain time of day.



                    Certainly increasing the timeout is not a bad idea (if it is currently set pretty low) and may resolve the problem in and of itself.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Aug 27 '16 at 1:49









                    John WuJohn Wu

                    31.1k42753




                    31.1k42753























                        13














                        Remember to increase the connection timeout AND the command timeout:



                        SqlConnection(@"Data Source=SQLSERVER;Initial Catalog=MYCATALOG;Integrated Security=True;Connection Timeout=1000");//huge timeout


                        and then:



                        com.CommandTimeout = 950;//or whatever





                        share|improve this answer


















                        • 1





                          is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                          – Vic
                          Aug 27 '16 at 2:39






                        • 1





                          No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                          – Shannon Holsinger
                          Aug 27 '16 at 5:32






                        • 6





                          At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                          – Brian
                          Sep 7 '17 at 21:19











                        • @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                          – Suncat2000
                          Mar 19 '18 at 15:10
















                        13














                        Remember to increase the connection timeout AND the command timeout:



                        SqlConnection(@"Data Source=SQLSERVER;Initial Catalog=MYCATALOG;Integrated Security=True;Connection Timeout=1000");//huge timeout


                        and then:



                        com.CommandTimeout = 950;//or whatever





                        share|improve this answer


















                        • 1





                          is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                          – Vic
                          Aug 27 '16 at 2:39






                        • 1





                          No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                          – Shannon Holsinger
                          Aug 27 '16 at 5:32






                        • 6





                          At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                          – Brian
                          Sep 7 '17 at 21:19











                        • @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                          – Suncat2000
                          Mar 19 '18 at 15:10














                        13












                        13








                        13







                        Remember to increase the connection timeout AND the command timeout:



                        SqlConnection(@"Data Source=SQLSERVER;Initial Catalog=MYCATALOG;Integrated Security=True;Connection Timeout=1000");//huge timeout


                        and then:



                        com.CommandTimeout = 950;//or whatever





                        share|improve this answer













                        Remember to increase the connection timeout AND the command timeout:



                        SqlConnection(@"Data Source=SQLSERVER;Initial Catalog=MYCATALOG;Integrated Security=True;Connection Timeout=1000");//huge timeout


                        and then:



                        com.CommandTimeout = 950;//or whatever






                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Aug 27 '16 at 2:04









                        Shannon HolsingerShannon Holsinger

                        1,8271517




                        1,8271517







                        • 1





                          is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                          – Vic
                          Aug 27 '16 at 2:39






                        • 1





                          No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                          – Shannon Holsinger
                          Aug 27 '16 at 5:32






                        • 6





                          At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                          – Brian
                          Sep 7 '17 at 21:19











                        • @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                          – Suncat2000
                          Mar 19 '18 at 15:10













                        • 1





                          is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                          – Vic
                          Aug 27 '16 at 2:39






                        • 1





                          No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                          – Shannon Holsinger
                          Aug 27 '16 at 5:32






                        • 6





                          At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                          – Brian
                          Sep 7 '17 at 21:19











                        • @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                          – Suncat2000
                          Mar 19 '18 at 15:10








                        1




                        1





                        is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                        – Vic
                        Aug 27 '16 at 2:39





                        is it mandatory if I increase the connection timeout in sqlconnection need also to increase the commandtimeout?

                        – Vic
                        Aug 27 '16 at 2:39




                        1




                        1





                        No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                        – Shannon Holsinger
                        Aug 27 '16 at 5:32





                        No, it won't throw an error message, but one doesn't do much good without the other. If your connection timeout is set at 30, it does no good to increase your command timeout to 60 or vice-versa. The whole she-bang will cancel and timeout when the lower of the two numbers is reached.

                        – Shannon Holsinger
                        Aug 27 '16 at 5:32




                        6




                        6





                        At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                        – Brian
                        Sep 7 '17 at 21:19





                        At least in Sql Server, the connection timeout is how long it takes to establish a connection. It doesn't have anything to do with the lifetime of the connection. Command timeout has to do with how long the command takes to execute.

                        – Brian
                        Sep 7 '17 at 21:19













                        @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                        – Suncat2000
                        Mar 19 '18 at 15:10






                        @Shannon If the connection times out, the command won't be executed and value of the command timeout doesn't matter. If the command executes, obviously the connection timeout is fine; it's irrelevant to how long the command executes. They're independent values.

                        – Suncat2000
                        Mar 19 '18 at 15:10












                        0














                        It can also be another issue. For instance, if you run a lot of queries during one connection opened and it exceeds the connection lifetime. Then you need to set Connection Lifetime property in your connection string. Here is the description:




                        When a connection is returned to the pool, its creation time is
                        compared with the current time, and the connection is destroyed if
                        that time span (in seconds) exceeds the value specified by Connection
                        Lifetime. This is useful in clustered configurations to force load
                        balancing between a running server and a server just brought online. A
                        value of zero (0) causes pooled connections to have the maximum
                        connection timeout.







                        share|improve this answer



























                          0














                          It can also be another issue. For instance, if you run a lot of queries during one connection opened and it exceeds the connection lifetime. Then you need to set Connection Lifetime property in your connection string. Here is the description:




                          When a connection is returned to the pool, its creation time is
                          compared with the current time, and the connection is destroyed if
                          that time span (in seconds) exceeds the value specified by Connection
                          Lifetime. This is useful in clustered configurations to force load
                          balancing between a running server and a server just brought online. A
                          value of zero (0) causes pooled connections to have the maximum
                          connection timeout.







                          share|improve this answer

























                            0












                            0








                            0







                            It can also be another issue. For instance, if you run a lot of queries during one connection opened and it exceeds the connection lifetime. Then you need to set Connection Lifetime property in your connection string. Here is the description:




                            When a connection is returned to the pool, its creation time is
                            compared with the current time, and the connection is destroyed if
                            that time span (in seconds) exceeds the value specified by Connection
                            Lifetime. This is useful in clustered configurations to force load
                            balancing between a running server and a server just brought online. A
                            value of zero (0) causes pooled connections to have the maximum
                            connection timeout.







                            share|improve this answer













                            It can also be another issue. For instance, if you run a lot of queries during one connection opened and it exceeds the connection lifetime. Then you need to set Connection Lifetime property in your connection string. Here is the description:




                            When a connection is returned to the pool, its creation time is
                            compared with the current time, and the connection is destroyed if
                            that time span (in seconds) exceeds the value specified by Connection
                            Lifetime. This is useful in clustered configurations to force load
                            balancing between a running server and a server just brought online. A
                            value of zero (0) causes pooled connections to have the maximum
                            connection timeout.








                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 17 '18 at 9:48









                            OlegIOlegI

                            6391413




                            6391413





















                                0














                                I fixed this error by finding the exact procedure in event viewer where timeout was happening.



                                Connected to the same Database in SSMS and ran:



                                exec sp_recompile 'Procedure name'


                                It showed the below message:



                                Object 'Procedure name' was successfully marked for recompilation.






                                share|improve this answer



























                                  0














                                  I fixed this error by finding the exact procedure in event viewer where timeout was happening.



                                  Connected to the same Database in SSMS and ran:



                                  exec sp_recompile 'Procedure name'


                                  It showed the below message:



                                  Object 'Procedure name' was successfully marked for recompilation.






                                  share|improve this answer

























                                    0












                                    0








                                    0







                                    I fixed this error by finding the exact procedure in event viewer where timeout was happening.



                                    Connected to the same Database in SSMS and ran:



                                    exec sp_recompile 'Procedure name'


                                    It showed the below message:



                                    Object 'Procedure name' was successfully marked for recompilation.






                                    share|improve this answer













                                    I fixed this error by finding the exact procedure in event viewer where timeout was happening.



                                    Connected to the same Database in SSMS and ran:



                                    exec sp_recompile 'Procedure name'


                                    It showed the below message:



                                    Object 'Procedure name' was successfully marked for recompilation.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Mar 8 at 4:47









                                    user728630user728630

                                    82341122




                                    82341122



























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f39176692%2fthe-wait-operation-timed-out-asp%23new-answer', 'question_page');

                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

                                        Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

                                        How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page