Can anyone tell me what these warning messages mean? They're not actual errors but they are preventing my Web App from publishing.
Thanks,
Printable View
Can anyone tell me what these warning messages mean? They're not actual errors but they are preventing my Web App from publishing.
Thanks,
1 - This is telling you that it can't find the original DLL because it wants to copy the DLL to your bin folder again. Go to your references in Solution Explorer, right click ajaxcontroltoolkit.dll, properties. Look at the Location property. Then go to where the Location property points to and ensure that the DLL is there. Then, go to your bin folder an ensure that the AjaxControlToolkit.dll is there too.
2 - Same as #1
3 - Double click it, it should show you the bad code. It seems like you have a public errorLabel property in your master page which conflics with an existing label on the same master page. You may just need to change the name.
Thanks Mendhak...I'll give it a shot!
Blake,
On a side note, am I not right in saying that you are after:
Rather than:Code:Request.Browser.Name
http://www.4guysfromrolla.com/articles/120402-1.aspxCode:Request.Browser.Type
Gary
Gary,
You are probably right. I'm just trying to get the browser name, i.e. "Netscape", "IE", "Firefox", etc.
Why should I use "Request.Browser.Name" instead of "Request.Browser.Type"?
Thanks,
Hey,
Actually, you might be ok:
http://msdn.microsoft.com/en-us/libr...base.type.aspx
From the quick test that I did on the link that I sent you, "Type" returned "Desktop", but as per the MSDN documentation, it should return what you expect.
Gary
Cool,
Thanks for the check!!!