AJAX :: MSAJAX BUG: Overrides Of ToString () And Other Methods Present In Object Do Not Propagate To Derived Classes?
Oct 8, 2010MSAJAX: overrides of toString() and other Object methods do not propagate to derived classes
View 1 RepliesMSAJAX: overrides of toString() and other Object methods do not propagate to derived classes
View 1 RepliesI don't know if this has to do with how FindControl works or how scope works. But my base class is having a hard time seeing the fields of child classes. Currently I'm planning have the derived class set a property in the base class, but there are a lot of derived classes, so that isn't a very attractive solution.
[code]....
Is it possible to call usercontrol methods/events using MSAJAX. I wanted to update my usercontrol by calling one of its events when a property from its parent page changes.
View 2 RepliesI have an extension method as follows:
public static class PageExtensions
{
public static int GetUserId(this Page targetPage)
{
var user = Membership.GetUser(targetPage.User.Identity.Name);
return (int)user.ProviderUserKey;
}
}
Now in a page I need to use this method in a static WebMethod, so I have added another 'extension method' to PageExtensions:
public static int GetUserId()
{
return (int)Membership.GetUser(HttpContext.Current.User.Identity.Name).ProviderUserKey;
}
and I call it as follows in my WebMethod: PageExtensions.GetUserId()
I've got a old working project. But i like to work in 2008 with it.
So i've made a new clean project.
And imported the code, also the .cs files with the classes, the thing, i could not add a ASP.Net Folder for the App_Code (strange?).
So i made it by hand, maybe thats the problem... ?
But if i try to run the project coud'nt find the classes, while they are there, in the App_Code folder.
I've build a Class Library, in the same project i put a web project. But its impossible to access the classes from the dll generated by the class library. Whats wrong? JumpTide XML uses the namespace like:
namespace JumpTideClassLib
{
public class jumptidexml
{
public class MetaTags
{
Image:
How to load UserControl at runtime and invoke the methods present in that usercontrol dynamically( at runtime)?
View 4 RepliesDoes anyone know how to do this? I built a backend c# class in asp.net but want to access these same classes without recreating them in silverlight. Is this a possibility?
View 4 RepliesI'm trying to figure out how add extra logic to this derived column expression:
LEN(TRIM(pup_date)) == 0 ? NULL(DT_DATE) : ((DT_DATE)(SUBSTRING(pup_date,5,2) + "-" + SUBSTRING(pup_date,7,2) + "-" + SUBSTRING(pup_date,1,4)))
If there's a 0 in the field the code inserts a null. Otherwise it inserts a date. How can I change this to insert a NULL if a question mark "?" appears in the column?
This is what I tied using the OR operator but it's not working:
LEN(TRIM(pup_date)) == 0 || LEN(TRIM(pup_date)) == "?" ? NULL(DT_DATE) : ((DT_DATE)(SUBSTRING(pup_date,5,2) + "-" + SUBSTRING(pup_date,7,2) + "-" + SUBSTRING(pup_date,1,4)))
on VWD 2005 this code works fine, but on 2008 it says I haven't created an instance of the object. I want to convert the object connString (a connection string) into a string.
'This acceses the virtual directory web.config file for connection strings
'We have to convert the object to a connection string
Dim rootWebConfig As System.Configuration.Configuration
rootWebConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/VirtualDirec")
Dim connString
As System.Configuration.ConnectionStringSettings
connString = rootWebConfig.ConnectionStrings.ConnectionStrings("ConnectString1")
Dim strConnString
As
String = connString.ToString().......
I have two different classes, and would like to (for example) alter the text of a label control contained in one class using the other. At present I experience the following error (e.g.):
"ProjectName.PageName.Protected WithEvents ControlName As System.Web.UI.HtmlControls.HtmlGenericControl' is not accessible in this context because it is 'Protected'."
All the subroutines in my PageName class begin "Protected Sub...", however even if I change these to "Public Sub..." this does not fix the problem. How do I achieve this? Also, are there security implications to not protecting subroutines?
I'm teaching myself web services at the moment and I've hit a bit of a stumbling block:-I've implemented a set of services for ordering shutters.These services use an underlying object model consisting of an order and a shutter class.The CreateOrder Service returns an order object and I now want to be able to add shutters to it by calling myOrder.Add(myShutter).
The problem is that the asp.net site I'm using to test it can't "see" the Add method on Order. If I browse the object tree I can see the Order Object but when I drill into it no methods are visible. Is this something to do with the way I've added th reference. edit> I just found the class in the "Reference.vb" file and aded this to it:-
Public Sub Add(ByVal Shutter As Shutter)
End Sub
Just about to test that. edit>I found this site and what he sugests fixes the problem but...I've had to add a local reference to the ObjectModel project to the web site. That seems wrong to me. It's not a web reference so how will this work in the real world. Once I actually deploy the service a project on a remote client isn't going to understand a local reference is it?
I have a new web application I'm trying to create. I'd like to put some automation into how it propagates upcoming dates. Here is the way I'd like it to function.
I have three tables:
Managers
- id
- netid
- phone1
- phone2
- username
Monthvals
- id
- monthname (Friendly like December 2010)
- monthval (shortdate like 2010-12-01 00:00:00)
Weekends
- id
- weekend_val (date of the friday)
- month_id (Monthvals.id)
- mgr_id (Managers.id)
The tables I need to create SPs for are monthvals and weekends that will build the upcoming year. This is where I'm kind of stumped.
The spec for this is each manager gets assigned a weekend every 35 days with the exception of two which alternate so in that case, every 70 days.
What I need this SP to do is based on the activity in December or the last six weeks, I'd like it to write out a schedule for the following year. I don't mind writing this out but I could really use some psuedocode to iron out what I'm trying to do.
I am developing a web application where users can draw their own images in a web page using canvas. After it's drawn, this image should be shown in other users' browsers' canvas. Same thing with updates.I am only using javascript. How can i solve this problem using System.net and Asp.net?
View 1 Repliesmy requirement is : am having a excel sheet with some values listed i want to pass each value present in any(specified) column to a text box present on a remote page (a site other than mine) as a input and capture the result displayed on the page and then store the input and reuslt side by side in db this should repeat till the end of the input values in the excel sheet.
View 2 RepliesI have a user control with a number of methods. I also have a dataset object that I'm filling in one method, but I also need to access that same dataset (and the data in it) in another.
I am filling the dataset from some xml that I get from a webservice when someone clicks on a button. The data from the dataset is then bound to a listbox control. When someone selects an item in the list control (I have autopostback set to true on it) it then fires off another method and it's this method where I need to access the data in the dataset, but when I check the immediate window it's telling me that the dataset is set to null.
Where am I going wrong?
[code]....
Can somebody justify this statement with example: delegates represent methods that are callable without knowledge of the target object. i am not getting how we are hiding the function name at the UI.
View 4 RepliesI am new to LINQ. when we drag tables we get a dbml file and designer file.
For example DataClasses1.dbml and DataClasses1.designer.cs.
Once we have them then we can start using our LINQ Queries.
In my company project I do not see this designer files and instead there are .tt files which were used as templates to greate ABC.generated.cs files. Is this same as designer class?
i use Visual studio 2008, and here in ajax extentions, many controls like
AnimationExtender, move, sequence are not present.
i have problem white Object datasource. i have a multi-tier Application that include common layer ,DAL Layer,business logic and persantation layerwhen i add a object datasource to my page, it bring me only common layer classes . but i want use bisuiness layer classes what do i do ?
View 1 RepliesI am following the Nerd Dinner tutorial as I'm learning ASP.NET MVC, and I am currently on Step 3: Building the Model. One part of this section discusses how to integrate validation and business rule logic with the model classes. All this makes perfect sense. However, in the case of this source code, the author only validates one class: Dinner.
What I am wondering is, say I have multiple classes that need validation (Dinner, Guest, etc). It doesn't seem smart to me to repeatedly write these two methods in the partial class:
[code]....
This doesn't "feel" right, but I wanted to check with SO to get opinions of individuals smarter than me on this. I also tested it out, and it seems that the partial keyword on the OnValidate method is causing problems (understandably so). This doesn't seem possible to fix (but I could very well be wrong).
How to access the HTML control values in form object, if runat="server", is not present in the HTML controls.
View 6 RepliesI am having a simple web service method which returns JSON serialized response. The attribute to web method is
[WebMethod, ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)]
As security of the return data is not a problem, I am Get enabling the HTTP response. On the client (browser) end, my code is as below
[Code]....
Everything works smoothly but occasionally on the web server's event viewer, I see the following error
"Request format is unrecognised for URL unexpectedly ending in /SomeWebServiceWebMethod"
After fiddling through the request headers using Fiddler, I figured out that if I make direct request to the webservice link, contentType header attribute is missing and that is what throws the error. There is a good post by scott guthrie explaining this. I am not able to replicate the issue and not sure what removes the contentType attribute from the request header occasionally.
I want to save the input mask used in the control, but ONLY if a valid value was entered. In this markup, the mask is properly displayed and stored even if the user doesn't enter anything. Since a zero-length string is a valid value, the entered value is being stored in the database as (___) ___-____ If there is no value entered, the value stored should be a zero length string.
[Code]....
Tried quite a few things, but cannot make it work. Solution probably a simple switch that has to be set somewhere.
We simply want to set the text properties of two literals. One literal will constitute the form, the other some js code.
</div></center>
</form>
<asp:Literal id="ctlForm" runat="server"></asp:Literal>
<asp:Literal id="ctlPostScript" runat="server"></asp:Literal>
</body>
</html>
In the code behind these literals are populated, the form literal holds a couple of fields, the script literal looks like this:
StringBuilder strScript = new StringBuilder();
strScript.Append("<script language='javascript'>");
strScript.Append("var ctlForm = document.forms.namedItem('{0}');");
strScript.Append("ctlForm.submit();");
strScript.Append("</script>");
ctlPostScript.Text = strJS2; //where strJS2 is the string being returned by the stringbuilder
This is executed when a certain button is pressed. The purpose is to redirect to another site.
This works fine as long as no AJAX is used.
However as soon as AJAX is added, in particular as soon as the script manager is added with partial rendering set to TRUE:
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
</asp:ScriptManager>
then this stops working. The code in the button is still executed, we checked that, the literals get the right text properties. It appears however that the javascript is not executed. Nothing happens, no redirection.
the problem can be overcome by settin the script manager partial rendering to false, however, when this is done, much of the AJAX functionality stops working.
We think it may have to do with registering the script with the script manager. We tried this:
ClientScript.RegisterStartupScript(this.GetType(), "JSScript", strJS2);//done before setting the text property of the literal
But to no avail.
Anybody has seen this before and knows how its done right?