Asp.net - Equivalent To IScriptControl For Web.UI.Page?
Apr 1, 2010
We've been using IScriptControl to tie javascript objects to our UserControls and ServerControls, and it's worked fine.The problem is that ASP.NET seems to provide no method to tie a javascript object to a Page. Up to now, we've been putting plain functions in the global namespace, but I am developing a serious allergy to that practice.It'd be easy enough to wrap our functions into a javascript class, and to include the javascript file on the page, but how to instantiate the object, how to reference it from callback events, and how to pass data to it from the code-behind, I haven't figured out.Or rather, the methods we've been using up to now (hidden fields, emitted javascript strings, etc.
View 1 Replies
Similar Messages:
May 13, 2010
What is the .Net equivalent of a JSP page?
View 4 Replies
Mar 4, 2010
I want to know what is equivalent to Page Error() in MVC which we use to have in simple asp.net, which is called when any invalid character is there in the input string.
I donot want to use [ValidateInput(false)] option for this. which I can handle invalid characters in the input.
View 2 Replies
Dec 7, 2010
I use visual studio 2008. When I set breakpoints on code they don't break. So only thing I can do is to debug "manually" using firefox with firebug.Is there a way to debug with Visual studio?
View 1 Replies
Mar 30, 2010
I've written a ServerControl that contains a significant amount of javascript, and I'm using IScriptControl to pass parameters from the server code to the javascript. The javascript file is configured as an embedded resource, and a script reference to the file is being injected into the html by IScriptControl.GetScriptReferences(). The ServerControl is contained in a DLL assembly. When I use the control in a test page everything works fine.
What I want to do is to extend the control - to derive a new control from it, in a second assembly, that provides some extended functionality. (The first assembly contains code that is shared across customers, the second code that is shared across several projects for the same customer). So, my problem: I create a new ServerControl that derives from the first, but doesn't yet provide any new functionality.
[Code]....
Then I change my "<%@ Register ... %>" tag in the test page to reference the derived control. Things compile just fine, and the code-behind runs fine, but I get an undefined variable error in javascript. Sys.Application.add_init() is calling $create(), passing the <namespace>.<classname> of the javascript class, and it's throwing an error on the namespace.
Now, the namespace is registered on the first line of javascript file. Which makes it look like the javascript file might not be being included, when using the derived control. So I stuck a "debugging" line in front of the Type.registerNamespace(). Using the base control, the debugger breaks as it should. Using the derived control, it does not.
So, I look at the script includes in both versions of the page. They are identical. The sources are src="/testing/WebResource.axd?<random junk>", or src="/testing/ScriptResource.axd?<random junk", so I'm not sure which one refers to my embedded javascript file, but whichever one it is, the includes are identical between the page using the base control that works and the page using the derived control that does not.
View 1 Replies
Mar 24, 2010
I'm playing around with a asp.net page that's using the IScriptControl interface to pass data from the code-behind to the custom javascript object running on the browser.I'm passing a number of properties via IScriptControl.GetScriptDescriptors(), and they're all working fine, except for one.That one is a class derived from System.Collections.Generic.Dictionary<>. And even that one has been working for me, so long as the elements in the collection were scalars - ints, doubles, and strings. But when I tried to pass a member of a class, it showed up as a null object in the javascript. The class in question is marked [Serializable]. I changed it to a struct, and got the same behavior.It looks as if the serializer used in IScriptControl does a shallow copy.
View 2 Replies
Dec 1, 2010
My Composite control implements IScriptControl interface.
ScriptReferences java script file does the client-side work, there I want to load a html file inside iFrame.
The Html file is an embedded resource:
([assembly: System.Web.UI.WebResource("Control.Resources.list.htm", "text/html")])
I pass the path of the html to the javascript file via descriptor property:
IEnumerable<ScriptDescriptor> IScriptControl.GetScriptDescriptors()
{
descriptor.AddProperty("iframe", iframe);
return new ScriptDescriptor[] { descriptor };
}
Where iframe is a string that contains the path from the webresource.
Now, in this html file I want to display few images that must be also loaded from resource.
The Question is how to access the resources from this html file?
Do I have to pass every image path as descriptor property?
View 10 Replies
Mar 4, 2010
I am working towards porting a windows application to web. The windows application is quite rich w.r.t. the form controls, complex validations and user interactivity.Basic web forms are inadequate to meet these complexities. So I would like to know the best way to still have the richness on the web pages. I have some ideas and would like comments.
Use DHTML & Java Script to mimic complex controls. There are some macro controls available as part of jQueryUI that can be used and some other third party Java Script controls. I'd like suggestions if there is a recommended control library.Use RIA (preferably Silverlight) wherever rich controls are needed. I'd like to keep this as a last option because it mandates the Silverlight plug-in.What are other popular / preferred strategies?
View 4 Replies
Feb 24, 2011
I'm trying to stop the rest of a page loading based on some parameters; but am not sure of the correct syntax.
@if(dayRes + dayTri == 2){<text>Sorry, etc</text> @Response.End}
The above throws this error: CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments
View 1 Replies
Feb 1, 2011
I have a results set of 3 columns and aproximately 40 records. Instead of a Gridview with paging enabled or a GridView to where you need to scroll down the page to view all the data, I'd like to have two tables side by side.Is there and easy way to acomplish this?
View 1 Replies
Jan 31, 2010
We have a fairly large system involving multiple applications running on Windows, written in .NET. These include a number of web applications using ASP.NET.
We have a number of unrelated web applications written in LAMP - Linux/Apache/MySQL/Php.
The greatest advantage we've seen in ASP.NET is the ease with which code can be shared between web applications, win-form applications, windows console applications, and windows services. We have signficant code in .NET assemblies that are shared across all of these environments.
Apache/Php has some significant advantages over ASP.NET as a web programming environment, but if there is anything in it that is equivalent to .NET when it comes to integrating code that is shared across non-web applications, I'm unaware of it.
View 2 Replies
Jul 30, 2010
What's the equivalent of PHP's $_FILES variable in C#? Or at least something that accesses the files in the same way. I've got an upload form that I can't change and need to find out how to get at these files.
View 3 Replies
Jan 7, 2011
I am making an Asp.Net application which does the following on the client computer:
Establish a Connection. Check client's cpu usage to see if it is idle or not.If the client is idle it starts executing a c application.While executing the script if client starts doing something (also checked by monitoring his cpu usage) stop signal is sent. Start signal is again sent to the client if he is back to his idle position. If the client is Ubuntu, I use ssh and execute what I want to.What is the way of doing this in Windows without the root access?
View 2 Replies
Jun 1, 2010
Can you let me know the equivalent of C/C++ #define in asp.net?
View 5 Replies
Mar 6, 2011
What is the equivalent to function mid in ASP page?
View 2 Replies
Jun 22, 2010
I'm using a DataReader to display informations stored in a table. I created Two button to go to next record and to go back. In VB6 I used this code :
While Not Recordset1.EOF
Recordset1.MoveNext
End While
In ASP.NET I didn't find a way to do like it, because DataReader hasn't the EOF property.
EDIT :
While Not Recordset1.BOF
Recordset1.MovePrevious
End While
How can I convert this last code (VB6) to ASP.NET?
View 2 Replies
Jun 29, 2010
I have some code I would like to execute very early in the lifecycle of a call to an ASMX function. For our ASPX pages, this code is in the Page_Init() function on a base class, from which all our ASPX pages inherit.
Is there an ASMX equivalent to the ASPX's Page_Init() function?
Better yet, is there an ASMX lifecycle diagram like the ASPX one? http://msdn.microsoft.com/en-us/library/ms178472.aspx
If there is an ASMX equivalent to Page_Init(), I assume I can implement code in a common base class, from which all my ASMX classes can inherit, correct?
View 3 Replies
Mar 15, 2011
I have been using this tag ActionLink().Replace in asp.net mvc 1.0:
<li><%= Html.ActionLink("_place_", "Index", "Home").Replace("_place_", "<div id='homeOff'></div>") %></li>
I upgraded the project to mvc 2.0 and now this .replace() does not work any more. I was looking for equivalent code for this.
View 2 Replies
Mar 15, 2010
I use T4MVC inside my asp mvc projects, mostly because it's brilliant. Is there an equivalent for asp webforms?
View 2 Replies
Jan 19, 2011
Can anybody tell me what the LINQ equivalent of this SQL would be?
[Code]....
But it returns none of the records that are returned by the SQL.
View 1 Replies
Dec 17, 2010
I am looking for an alternative of these two functions in asp.net/c#.
if(function_exists('foo'))
{
$returned = foo($bar);
}
if(class_exists('foo'))
{
$fooclass = new foo($bar);
}
View 4 Replies
Oct 24, 2010
I can't see a reason why we couldn't do the same thing Heroku does for an ASP.NET website.
View 3 Replies
Jan 17, 2010
I'm considering rewriting a small Http Module i made in ASP.NET in Java. Based on a specific URL, the Http Module inserts some HTML on an empty HTML layout, do some basic reformatting, and finally returns the rendered HTML. Being new to Java web development, what is the equivalent to ASP.NET Http Modules?
View 2 Replies
Jan 31, 2011
Using this code on the javascript side and
Using sha As New SHA256Managed
Using memStream As New MemoryStream(Encoding.ASCII.GetBytes("Hello World!"))
Dim hash() As Byte = sha.ComputeHash(memStream)
Dim res As String = Encoding.Default.GetString(hash)
End Using
End Using
I have been unable to recreate the same hash for the same values with these two bits of code.
The javascript implementation returns: 7f83b1657ff1fc53b92dc18148a1d65dfc2d4b1fa3d677284addd200126d9069
and the vb.net example returns: ʱeĆ±Ć¼S¹-ĆH”Ć]Ć¼-K£Ćw(JĆĆ mi"
What am I missing? I assume it's something to do with the character encoding?
[code]...
View 3 Replies
Apr 4, 2011
I have a text document that is a roster of licensees. I am looping through this document to create a html table of this data. I've come across names with non standard characters.This is one of them AimeƩI tried running all the inputs through the following function, but when it comes across the above character it doesn't replace it.
Function ReplaceBadCharacters(ByVal input As String) As String
Return input.Replace(Chr(233), "é")
End Function
How can I replace each character with the html equivalent?EDITWhen I debug the above function it shows the input as Aime[] and not AimeƩ.
View 2 Replies