Hello,
I have created a new object for tracing ActionScript 3 objects and I want to share it with other developers and eventually get some feedback in order to make it better.
You can get the source from:
http://blog.bodurov.com/Post.aspx?postID=13
Any feedback is welcomed!
How can I define in XSLT schema that one attribute is required and another is optional?
There is no "required" or "minOccurs" parameter here
<xs:attribute name="Name" type="xs:string" />
I've seen this syntax:
this.ie4 = !!(this.ie && !document.getElementById);
Can somebody explain to me why do I need !!, why not just:
this.ie4 = (this.ie && !document.getElementById);
I am not IIS Administration expert so I may be wrong but as I look on our production IIS log there are serveral stange thinds there the logs look like that
date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
2005-09-16...
I have noticed the usage of key property in web controls but I don't see it in the documentation. For example I see this code:
<asp:Label id="SystemLabel" runat="server" key="Main_SystemLabel"></asp:Label>
There is no property key in the Label control, nor in one of the base classes...
I have a given .NET assembly myassembly.dll
Inside that assembly I have a class MyNameSpace.MyClass
I wamt to change that class but I don't want to change other classes
Is there any way to extract that class from the DLL and then to recompile it with the new class, assuming that I have the...
OK, so let's say I have table:
CREATE TABLE Test(
gui_id UNIQUEIDENTIFIER DEFAULT newid(),
vch_code VARCHAR(50)
)
INSERT INTO Test (vch_code) VALUES ('A')
INSERT INTO Test (vch_code) VALUES ('B')
INSERT INTO Test (vch_code) VALUES ('C')
INSERT INTO Test (vch_code) VALUES ('C')
How can I get...
I just have found that there is a big security issue with possibility to invoke any public method in any assemble in BIN if I use remoting...
Is there any way not to allow accessing a method in assembly but only aspx page?
How can I protect other objects in my assemblies for possibility to...
I have a server and a mirror failover server. In web its always only one, but I have to install Remoting on both. So does it mean that we have to pay for two CPU 2*999?
Won't I be able to install one on both?
Where is being stored the compiled class of aspx page? Not code behind class. I know code behind classes are stored in a dll located in BIN folder with a name of the project. But how about the aspx pages? Changing them has the great advantage of not reseting the site session, so I started using...
Is it possible to use table variable as parameter for Stored Procedure?
Like this:
CREATE PROCEDURE SD_sp_HitLog
@tbl_result table(gui_id uniqueidentifier) OUT
AS
(but this doesn't work)
How to write regular expression that Splits by ',' but not by '\,'
so if I have
string str = @"Aa aa\,\,aa aaA,\,,Bbbb bbb bbB";
string pattern = ?
string[] strArr = Regex.Split(str,pattern);
Console.WriteLine("# Elements: "+strArr.Length);
for(int i=0;i<strArr.Length;i++){...
I need to cancel PostBack on the server side (I know how to do that on client side but this is not what I need).
That's my current solution.
protected void Page_Load(object sender, System.EventArgs e){
if(ShouldBeCanceled){
Response.Redirect(Request.Url.ToString());
Response.End();
}
}...
How can I create database alias?
I have database with name MYDB_ARCHIVE but I want to call it to MYDB_CLIENT_ARCHIVE (it is required by the software that uses database) but I don't want to rename my database. Can I create just another alias with name MYDB_CLIENT_ARCHIVE that points to...
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.