error CS0246: The type or namespace name 'xxx.Custom.TreeNavigator' could not be found (are you missing a using directive or an assembly reference?)
this is driving me bonkers.
before you say it, the spellings are correct, and i have checked and rechecked this issue and the spellings are...
this may seem abit trivial, but am looking for an easy solution. here goes
I have application with a large amount of pages, each on is connected to a master page (well 3 diff ones). on the master pages i have a user control for the users information, ie who they are and a logout button. This...
I have inherited a web application, that was built in 2003, and I have converted it to 2005.
There is a main website, and then 2 other websites which contain user controls. All the navigation is channelled through a main page ( main.aspx), which then populates the user control in the viewing...
I am trying to create a listener page, that will validate and incoming XML document with an XSD.
StreamReader InboundStream = new StreamReader(Page.Request.InputStream);
string UseString = InboundStream.ReadToEnd();
InboundStream.Close();
string result = ValidateXML(xmlString);
public...
Hi,
I have a very large object that has around 50 parameters, and was looking for an easy method to validate that the paremeters are populated.
I don't really want to go throuhg each parameter with
if (object.Parameter == String.Empty) {
//then do something
}
I have seen something...
I am rebuilding an interaction with UPS is .net, was previously built.
In the initial interaction i need to send 2 distinct xml files at once.
in the classic asp, this was done through a string, however in the c# version, i am using XML, and with two XML headers, any XMl parser will reject it...
I have an error that is driving me nuts.
I am publishing the web service to a development server. Windows 2003 all with latest patches etc.
Publishing the service is no problem, but when i try to import it into a new project there is an eror
The server committed a protocol violation...
I have been looking around for examples, but have yet to find anything that I feel fits my 'problem'
it's not really a problem, but I'm trying to find an easier way of populating this XML file.
it is quite large and is being used to interact with a courier system.
I have already built a...
I am developing a little noddy windows form, and have an image place holder on the form.
it's really quite simple, where user enters a part number whihc is then displayed in a datagrid. When user click on a row, an image is then displayed in the placeholder of that part.
there are around...
I found this code
public static string CreateRandomPassword(int PasswordLength)
{
string _allowedChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789!@$?";
Byte[] randomBytes = new Byte[PasswordLength];
char[] chars = new char[PasswordLength]...
I have a problem with an small application that I am trying to publish to my production webserver.
It's driving me bonkers as i have tried pretty much everything that I can think of..
The application works on my development machine (XP), the test system (2003), but not the live production...
for some reason my page is erroring on the text box. When I view the code is see the textbox initition
protected System.Web.UI.WebControls.TextBox txtusername;
protected System.Web.UI.WebControls.TextBox txtpassword;
but that's not what I want...I want the following
protected...
Hi,
Does anyone know where I can find a list of the all the standard objects and classes that are available in c# .NET with an explanation of what they are.
The msdn and visual studio helper are absoloute rubbish.
The problem I have is, I know what I want to do, but I don't know whihc...
Hi all,
I'm have some problems moving an application from my dev machine to the production server, i've tried looking in the Vis Studio help, and search google, but can't seem to find an answer.
The app uses a web service, and it works perfectly inside the network.
However when i try to...
Hi All,
I have a real problem, for some reason my script seems to be running twice.
The script pumps out an email with data drawn from database.
The first email comes through correctly with all fields populated correctly. Then a second email comes through, with all the field empty.
This is...
Hi,
I am a newcomer to C# and have been building an application which I have had some great success with.
I am stuck, and not sure how to procede.
I develop all the aspx pages on my local development machine, and have tested it and happy to release it.
I copied across a previous version some...
I don't think i have my brain in today :(
how do you check if a node in an xml is null?
set completed_code = objXML.SelectSingleNode("//completed_code")
if completed_code.firstChild.nodeValue <> "" then
completed_code = completed_code.firstChild.nodeValue
end if
says object is...
Hi all,
I have a curious problem. I have written an application that in classic ASP, that books an item into a database, there is an interaction between the application and UPS to get a shipping label.
The label is returned via XML as a 46k Base64 character string.
What then happens is that...
I am using Xstandard DLL for decoding a Base64 character string into a gif
http://www.xstandard.com/page.asp?p=F5096C20-DF8F-4FAA-A1A5-CC85A934139A
the image is a UPS label.
I have a performance issue with it, the first time the page is loaded it seems to takes around 30 seconds to generate...
since the end of last week an automated script has stopped running that use XMLHTTP to send an xml file to script across the internet.
it's pretty standard stuff (i've posted on the the send script)
Set objHTTPXML = Server.CreateObject("Microsoft.XMLHTTP")
objHTTPXML.open...
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.