Integrated Development Environment from Microsoft targeting ASP.Net applications
Questions tagged [visual-web-developer-2010]
151 questions
0
votes
1 answer
I have seen this code to prevent the form resubmission on page reloading
I don't understand the logic in the following js-code. When will it be triggered? When does the condition apply, etc.?
if (window.history.replaceState) {
window.history.replaceState(null, null, window.location.href);
}
I do understand, that…

rahul
- 31
- 2
0
votes
2 answers
Can't create SQL database, visual studio gets stuck and I get this error after a while
It says "A network-related or instance-specific error occurred while establishing a connection to SQL server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL server is configured to allow remote…
0
votes
1 answer
Cant see Mysql data source at the add connect to database
I have visual web developer 2010 express and mysql/connector 6.4.3
When I press on the database explorer tab -> connect to database, I need to choose data source but I dont see mysql data source as I shold.
I've tried to reinstall it..
I have both…

Nir
- 2,497
- 9
- 42
- 71
0
votes
1 answer
How to block command button in GridView when column data has specific value?
I currently have a GridView with the following columns
| # | Date | Line | Process | Equipment | Step | Status | |
---------------------------------------------------------------------
| 1 | 9/10/2020 | A1 | ABCD | SXCD | Test | …

hjh93
- 570
- 11
- 27
0
votes
0 answers
How to get DropDownList to copy data from a TextBox?
Currently in my Web form I have a cascading drop down list, but I'm focusing on the 1st drop down list for now.
Here is the code to load the list.
Private Sub FillLine() ' load 1st dropdown data
Dim dt As New DataTable
Dim strSql = "select…

hjh93
- 570
- 11
- 27
0
votes
1 answer
VB.Net - How to get DropDownList to auto select data based on URL query string?
In my web form, my drop down list already have the code to load the data selection. Now I want to add an auto fill function based on the query string in URL.
Private Sub FillLine() '1st dropdown
'1. Load intial selection into drop down list…

hjh93
- 570
- 11
- 27
0
votes
0 answers
VB Net - How to get cascading drop down list to select self insert row without error?
I have 4 dropdownlist in my web form that is cascading, the value of the 1st dropdownlist will affect the selection of the 2nd dropdownlist and so on.
Protected Sub line_selectedindexchanged(ByVal sender As Object, ByVal e As EventArgs)
Dim…

hjh93
- 570
- 11
- 27
0
votes
1 answer
ASP.Net (VB) - Populate drop down list using data from previous drop down list. [Member Not Found]
Currently making a form with drop down list that changes data based on the drop down list before it. I'm using this example as reference and this is what I have made so far:
Design:
…

hjh93
- 570
- 11
- 27
0
votes
1 answer
Responsive navigation list not showing content
I would like to add a responsive navigation bar to my blog. I got a video from youtube about responsive navigation bar. But i met with a problem. On 768px the content of navigation menu is not showing. When I inspect with Chrome, those links are…

Dony Peter Puthumana
- 11
- 6
0
votes
0 answers
fetch data from the SQL and display in an Interactive chart on the Web
I am from Electrical background and currently trying to develop reports that my manager wants to view in his browser.
Can you guys recommend what programming should I learn to 'fetch data from the SQL and display in an Interactive chart on the…
0
votes
0 answers
ArgumentException when trying to call a method from c# with AJAX
I need to call a method with AJAX into front-end and I did with $.ajax() but now it throws an ArgumentException that says the method is unknown. Any idea how to fix this?
Many of the answers that I found said that I need to make it public and…

8kk
- 140
- 9
0
votes
1 answer
JQGrid custom formatter - edit/save/cancel without formatter: 'action'
I am currently working with asp.net to develop a page where the user will interact with a jqgrid version 4.4.4. Because of the version, I cannot use formatter: 'action'. I have a custom formatter in place which has displayed an edit/save link.
I…

Seemingepic
- 77
- 9
0
votes
2 answers
I would like to build the blinking text effect that changes? in css.
I am looking to make a type effect that changes the words and types different words periodically. An example is http://mattfarley.ca/. This is exactly what I would like to create. As you can see the type effect changes the words and types new words.…

Gurpinder Singh
- 43
- 1
- 1
- 12
0
votes
0 answers
Microsoft Visual Web Developer cannot connect to SQL server 2008
When I try to connect to database from Microsoft Visual Web Developer, I keep getting the same error message.
"This server version is not supported. You must have Microsoft SQL Server 2005 or later."
I'm currently using Microsoft SQL Server 2008, so…

hjh93
- 570
- 11
- 27
0
votes
1 answer
Scrollbars Always Visible in CollapsiblePanelExtender
I have a web page I'm trying to set up that will show some Ajax Tables nested inside a CollapsiblePanelExtender. The table is nesting correctly, but the styles are behaving strangely. I recently started using Chrome's Inspector tool, and I think…

GeneralMike
- 2,951
- 3
- 28
- 56