I am trying to remove a whole element but instead am just removing its attributes. For example my code will take the tag: <item key="dbName" value="TESTdb" /> and after removeall it leaves it as: <item />.
I want the item tag totally erased. How do I do this? Here is the xml:
<?xml...
I have a submit button. When it is clicked then I want it to call asp code. It calls a vbscript sub.I don't know how to write the asp code within the script. Below is my code
........................................................
<tr><td><%=(vName)%></td><td><input type ="checkbox"...
Imports System.IO
Imports Oracle
Imports Oracle.DataAccess
Imports System.Threading
Imports Oracle.DataAccess.Client.OracleDataReader
Public Class LoadMissingData
Public myDS1 As New DataSet()
Public daOracle As New Oracle.DataAccess.Client.OracleDataAdapter()
Public...
Hello how do I navigate through a dataset to find column values. My code looks something like this:
Dim myDS1 As New DataSet
Try
strSQL = "select TERMINATE_NUMBER,ORIGINATE_NUMBER,CALL_DATE,CALL_TIME" & _
"from ratesys_gc_cdr_bad " & _...
Hi I have a huge file with numbers and white space. Each of the numbers in a specified position represents a field. The problem is that when I read the numbers at the specified position it takes whitespace into account. How do I avoid this? Below is my code:
Files =...
Hello I am trying to write to a textfile at a certian position. The problem is that when I do that what I write to the file writes over the existing data. How do I do a write that is like an insert which just inserts the values into the textFile without replacing them. Below is my code...
I am using a DataList to display a list of hyperlinks and labels. A user enters a search criteria and the page (hyperlink) is displayed along with a sentence (label)where the keyword is used. I have a Files arraylist of hyperlinks and a Descriptions arrayList of sentences. I don't know how to...
I am using a DataList to display a list of hyperlinks and labels. A user enters a search criteria and the page (hyperlink) is displayed along with a sentence (label)where the keyword is used. I have a Files arraylist of hyperlinks and a Descriptions arrayList of sentences. I don't know how to...
Hello All I have 4 string arrays and I am trying to copy them all into 1 large array and have an error that the index is out of range.I thought of using an arraylist but then I would have subindexes for each of the add()'s which I am not sure how to manipulate.Below is my code which currently...
This is my code:
Private Sub getWebViewFiles(ByVal s As String)
Dim files As String()
Dim curDirectory As String()
Dim dirs As String()
curDirectory = Directory.GetFiles("C:\\SCoutline4")
dirs = System.IO.Directory.GetDirectories("C:\\SCoutline4")...
Hello all I have a textbox that takes a string and when a button is clicked the string has to be passed to a method in an asp .net webform. How do I do this? below is my code.
Function in HOME.html (This is what I need help writing)!
<!--
function Button1_onclick() {...
I want to say search for either string *.htm and *.aspx. But the parameter needs to be a string not a boolean expression which is (*.htm && *.aspx). I get the error message ... Operator '|' cannot be applied to operands of type 'string' and 'string'. How do I allow my string parameter to be a...
Hello All, I need to make my own search engine for my website. I can't use webconfig to add keys to appsettings because the my server wont allow it. I am using C# asp .net version 1.1. I am thinking of just reading each html file or aspx file and picking out keywords from the filestream but I...
Hi all I looked at the website http://msdn2.microsoft.com/en-us/library/42x5kfw4(VS.80).aspx
to try to write a successful post build event. My current post build event is:
copy $(TargetPath) $(SolutionDir)\PEGF\$(OutDir)
I get the warning message "Post-Build Event failed". I am able to copy the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.