displaying client side message box
i want to dispaly the system.Windows.Forms.MessageBox in the client side computer.. i try this code but when i excute it, i is displaying in server not in the client computer how am i going to do this.
thanks in advance
What kind of application are we talking about? Where is the code located?
BrianBrian"Trust in the Lord and do what is good; dwell in the land and live securely. Take delight in the Lord, and He will give you your heart's desires" (Psalm 37: 3-4).
like this im using asp.net i want to execute asp.net function.
ex.
public sub save()
...
Server-side or client-side loading message?
I want to add this basic functionality of ajax, which is a loading message while the server is doing something.I could use a client-side control, like a div. But then I'd have the problem of hiding the div after a certain method was finished. I could use registerclientscript, but then I think it is weird to activate the message with client code and deactivate in the code-behind.I'd like to control the show and hide on the server side. How can I do that? When I click a button, I'd have to fire two assynchronous events, one to show the message and the other to do whatever it does...So I want t...
List of client side function of extenders and controls for client side
Hello All,I am using AJAX control toolkit for my current project. Now I need to find out what client side functions I can call on an extender. Lets say I am using a PopControlExtender. Now I want to show the popup from a JS funtions.If I can do a guess then it would be something like this$find('ppce').show();From where I can find what client side functions I can call on those extensders. This is really a frusterating thing. I learn about extenders only from Learn tutorials, no help here and there. Can anybody please tell me where are documentations about all the extenders in the tool...
Client side message box
hello,
I have a message box that pops out on the click of a button, asking what is the next step. If the user chooses Yes the application opens a word document to write, and if it clicks No just a read-only word document.
I use this code DialogResult reply = MessageBox.Show(text, "Files", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (reply == DialogResult.Yes){if (exst.Equals(".doc")) openword( dest, "yes");}}
else if (reply==DialogResult.No)
{if (exst.Equals(".doc")) openword ( dest, "no");}
when I run this code...
client-side message box...
I looked into putting a messagebox that alerts you whether or not you really want to delete it. I just put a simplistic button with the code in the subpage like it called for in the example, just a simple button click test and I am getting the error:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30456: 'BtnDelete' is not a member of 'ASP.test_aspx'.Source Error:
Line 9: Private Sub ...
"Push" messages to Atlas/Ajax Client or Client-side event handling of server messages
What I'm looking for is the ability for the client-side Ajax/Atlas GUI to be able to update itself when events occur on the server. The issue is that the events are triggered from a third party, and aren't triggered by postback. For example, let's say there's a Queue of data on the server, and each time a new item is added to the Queue, I want the client to recognize the addition and display the new item. Right now, the only way I can think of doing this is by setting up an Ajax timer and checking the state of the Queue on every timer tick. While this doesn't cause the page to refresh/postba...
Jscript, moving from client-side to server-side (.NET)
Hey all
I’m working translating a web-app written in client-side
Jscript to run on the server-side as JScript.NET. Without needing to get too
specific, I am using Jscript because the original page aggregated raw data to
produce statistical results (this was done dynamically based on user 'sort-by'
options). The final output is an html report that can be emailed.
Because this is currently being done on the client side, as
the raw data grows the load-time grows as well (to the point that has almost
become unusable). I’m posting here to see if anyone has any experi...
Validation Controls in .NET ( Client side or server side?)
i have a very basic question. We have all these validation controls in asp.net ( required field, range validator and others)..my question is the required field validator is a server side control. So does that mean that it does a post back?..is it client side or server side control
The only controls that post back are buttons and other inputs where you set AutoPostback="True", such as a dropdownlist or a textbox. Another way of posting back is using an UpdatePanel and placing a trigger in it for a specified control and/or event.
All controls are considered clien...
Can i run an EXE on server side to be displayed on client side?
I have made an animation in VB(file.exe), its a bit like a screen buddy that walks about the screen. I can call it from ASP.
Dim WshShell
set WshShell = CreateObject("WScript.Shell")
WshShell.Run "C:\WINDOWS\Desktop\file.exe"
set WshShell= nothing
%>
where the file.exe is on my desktop.
Does the client side see the animation? If not is there any way for the client to see this? I understand there are security issues here, but i only want this screen buddy to be displayed on their browser or screen. Java isn't an option as i don't have time to lear...
When to use client side varidation and server side varidation in .net?
In .net or classic web application we can varidate user data either on client isde or server side. How to select which side varidate to be used? Thanks!
Generally, I use both client and server validation. I make sure the input is in the correct format and reasonably valid on the client, then I verify the data on the server. The extent of validation also depends on the type of data that I need to validate.Here are a few references:Validating ASP.NET Server ControlsIntroduction to Validating User Input in Web FormsClient-Side Validation for ASP.NET Server ControlsSecurity Checklist...
communication between client side(java script) and server side in .net project
I have a question which is, when building a .net project, we are able to use server side code and client side code(java script). How do they communicate? Thanks
Client Side coding works with the WebBrowser. So when ever you write client side code you have to keep browser compatability in your mind and you have to code.
Server Side code works with Web Server (IIS) and it's ASPNET ISAPI's.
The won't directly communicate with each other. But using AJAX you can all server side code from Client Side!
Example article on Ajax@ http://www.devarticles.com/index2.php?option=content&task=...
How to write data to a file in client side using javascript or someother client side scripting language.
Hi,
I would like to know how to write a data to a client side file using javascript or someother client side scripting language. The file type expected is ini file. txt file would also be appreciable.
Thanks in advance.
If the site is a trusted and you are running IE then you could try http://www.w3schools.com/asp/asp_ref_filesystem.asp The Old Sewing FactoryThat twitter nonsense.
You can write to the server, but not to the client's machine. Being able to do so would be a huge security breach.When you ask a question, remember to click "mark as answered"...
can clear server side text box value from client side.?
Hi,
function Disab()
{ if(document.all.chkSPTariff.checked)
{
document.all.txtVFX.disabled=false document.all.txtVHSFO.disabled=false
}
else
{
document.all.txtVFX.disabled=true document.all.txtVFX.value=""
}
This is how i am clearing the text for <asp:TextBox>. Ofter i submit, i wonder to see the old value from serverside , like txtTemp.Text is h...
Server Side or Client Side
Hi I'm a bit confused about this whole server side / client side thing. Are applets, embeded objects consider client side? If I have a form within my aspx page which connects to a database on the server side what is it considered? If I have some business logic written within a VB file when the client access the functions within that business logic (for example some kind of validation function) does the client browser actually downloads that VB file? Can someone suggest how to differentiate between client side and server side components within a asp.net based website?
Hi,
i can...