Asp.net - Pass Value From Javascript To Vb Sub

Feb 6, 2012

i have a javascript function in aspx file now i use vb as back in asp.net now i use postback from javascript like this

[Code]...

now i dont get that "1" in my vb code i want to get it because i want check when i get page_load event by post back by this javascript

View 2 Replies


ADVERTISEMENT

Asp.net - Pass Value From Javascript To Aspx?

Jan 14, 2012

i had a javascript to detect user broswer width and want to pass the width to aspx.vb.

function chk_width() {
var winW = document.body.offsetWidth;
document.getElementById("hiddenfieldsize").value = winW;
// alert(winW);
}

View 3 Replies

Asp.net - Pass Javascript Variable To Codebehind?

Dec 26, 2011

Is it posible to get a value from a javascript variable and use it into visual basic code without incrusting value on any control.

View 1 Replies

Asp.net - Pass The Value Of A Control In A Datalist To JavaScript?

Aug 16, 2009

I have a datalist like this:

<asp:DataList ID="dl" runat="server" Width="301px" onitemcommand="dl_ItemCommand">
<ItemTemplate>
<table style="border:solid 1 #CCCCCC" >

[code]....

I want to pass src of imagePhoto to function showLayerUpLoad().How can i do that.Can i do this in ItemCreated event.

View 1 Replies

Javascript - Pass JSON File From ASP.NET To JQuery?

Feb 27, 2012

my problem is that my company does not want to serve up the .json MIME type, so I have to use ASP.NET to fetch the JSON file from the file server. Currently I have jQuery that does a getJSON and traverses the JSON object to build certain elements of the page. Is there a way I can use ASP.NET (VB) to give the object to my jQuery script after I fetch it?

View 1 Replies

Pass A Javascript Variable To OnMouseOver Event?

Sep 12, 2011

How can i use a js variable in mouseOver event?Here is my code:

<script type="text/javascript">
window.String1 = <%=GetLocalResourceStringEscaped("String1")%>;
window.String2 = <%=GetLocalResourceStringEscaped("String2")%>;

[code].....

View 3 Replies

Pass SQL Stored Procedure Results To Javascript?

Jul 19, 2011

I have an asp.net page that contains a javascript function. I am using a vb.net code behind to run a stored procedure against the database to pull back address information. Results can be 1 or more rows. I need to pass the results to the javascript for processing. My code is as follows:

VB.NET

Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

[Code].....

View 2 Replies

Asp.net - Pass Parameter As Text To JavaScript Function From .NET Code-behind

Mar 23, 2010

Basically, I have a gridview that is opened in a new window from the parent window. It has a bunch of records with a view button to view the details of each record (which stays in the same newly opened window). I have a calendar in the parent window that accepts a Date querystring parameter to set the current date on the calendar at page load. I'm just trying to refresh the calendar in the parent window to match the date of the label in the newly opened window.

All the code below is in the newly opened window. The .Net code-behind below refers to when that view button is clicked and everything is populated. At the end, I call the js to refresh the parent window and pass the value of the LabelScheduleDate as the querystring parameter. Now the label comes through as '03/25/2010' in the code-behind, but when I pass it to the js, it comes through as '0.00005970149253731343' in the end querystring. I'm not really sure what is making the value change, and I want to pass it as just text. Do I need to pass it as a string object? I tried but I don't think I was doing it right.

JavaScript Function
function RefreshParent(inputDate) {
window.opener.location = window.opener.location + "?Date=" + inputDate;
}

[Code]....

View 1 Replies

Javascript - Pass Page Or Master Page Object To AJAX Page Method

Oct 5, 2010

I wrote a page Page method in my aspx page. in web service method I need to call FindControl method return textbox and get text box value. But my findControl will take MasterPage object to iterate.

see my code

<script type = "text/javascript">
function ShowCurrentDateTime() {
$.ajax({

[Code]....

How to pass Master Page object or Page to Page method?. So I can use in Sared method.

Is there any way I can access Textbox value directly in Page method? I need access couple of controls in Page Method.

View 3 Replies

VS 2005 Update Table - If All Results Is PASS Then The Table2 Should Be Updated As Pass

Jun 8, 2012

I have two tables:

table1

case_no flow result
tc_1 001 pass
tc_1 002 pass
tc_1 003 pass
tc_2 001 pass
tc_2 002 fail
tc_2 003 pass


table2"

case_no result
tc_1 pass
tc_2 fail

Table2 should be updates from table based on the results... If all results is PASS then the table2 should be updated as pass... if any result is FAIL then the entire case_no should be updates a s fail..

View 7 Replies

Sockets - VB9 .Net 3.5 (2008) Code Works On The First Pass.Then Second Pass It Just Hangs On

Jun 19, 2009

This code was working consistently, but now...This code works on the first pass.Then second pass it just hangs on Code:Dim tcpClient As TcpClient = tcpListener.AcceptTcpClient() for about 2 minutesThen the code will fork for another pass, then fail.....

Code:Imports SystemImports System.TextImports System.Collections.GenericImports System.XmlImports System.Xml.LinqImports System.Net.Sockets

[CODE]....

View 2 Replies

C# - Show Hide Using Javascript On A Control Inside A ASCX Control In A Gridview (ASP.NET + Javascript)

Oct 8, 2010

I have written a web usercontrol (ascx). Inside, there is a Panel that I want to show/hide on click of a hyperlink inside the usercontrol. Normally, this is easy just by doing something like this (the onclick attribute is added to the hyperlink on prerender):

[Code]...

View 2 Replies

Pass Data To Dialog - Manipulate And Pass Back?

Jan 15, 2010

Just started VB programming this week and have found a wealth of information about what I'm trying to do. Problem is, some of it is more complete than others.Here's what I'm trying to do:In Form1 (my main form), I want to instantiate a class that contains a couple of properties (speed setpoint and position setpoint). When I click a button, I want to pass this data to Form2 and populate two textboxes on Form2 with the properties of this object. I want to manipulate the property values on Form2 and click an OK button which closes the dialog and returns the manipulated data, updating the property values of the object. Here's the algorithm I'm following:1) On Form1, instantiate the class2) On Form1's "Pass Data" button click event handler, instantiate a Form2 object and invoke the ShowDialog method, passing the object as a parameter.

3) On Form2, overload the ShowDialog method to accept the object as a parameter and modify the method so that it returns the manipulated class data.4) On Form2, in the ShowDialog method, populate the textboxes with the class data that was passed in.Here's where I get stuck. If I press the OK button on Form2 (DialogResult.OK), it returns me to Form1, but what hook do I have in Form1 to receive the manipulated class data that the ShowDialog method is returning?Here's an example of what I'm thinking about:

Code:
Public Class Form1
Dim clsController1 As New MotionController

[code].....

I'm sure it's probably a very elementary question, but every explanation I've found seems to be incomplete.

View 2 Replies

VS 2005 To Pass Or Not To Pass?

Apr 16, 2009

I am looking for some input. I am helping with a web application that is fairly large. We have some logic factored out into classes, not a true business logic layer (yet ). The classes are setup to pull values directly from the QueryString or Session variables and I'm not sure that that mehtod is proper or even a

The reason I would like some input is, there may be a chance to rewrite or at least refactor the code.

[Code]...

View 2 Replies

Pass A Value From A Sub Procedure To A Function Procedure .... Pass The Whole Subprocedure To The Function Procedure Argument?

Mar 30, 2012

Im a student doing an assignment, how do i pass the value from a sub procedure to a function procedure....i want to pass the value from decSubtotal to a function procedure named CalculateDiscount; check out my code--

[Code]...

View 1 Replies

Asp.net - Not Getting Value In Javascript?

Aug 17, 2009

I have a datalist and in itemdatabound iam calling javascript and passing one argument.But iam not getting that argument in js.

<asp:Button ID="btnUpload" runat="server" cssClass="button1" Text="Upload" >
<asp:DataList ID="dlView" runat="server" >
<ItemTemplate>
<tr>



Problem is in itemdatabound iam getting value in String.Format("javascript:UploadImages('{0}')", s)but when clicking on btnUpload ,control is moving to UploadImages in js,but no value in str.Following is html result

<div id="shadow" class="opaqueLayer"> </div>
<div id="question" class="questionLayer">
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="#F1ECDE">
<tr style="height:17">

[code].....

View 2 Replies

.net - MessagBox On JavaScript?

May 15, 2011

Protected Sub ListView1_ItemCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewCommandEventArgs) Handles ListView1.ItemCommand
'...vwmr for view more; atcr for add to cart

[code].....

View 3 Replies

Asp.net - JavaScript Can't Get/set Cookie In Ie7

Sep 14, 2011

I have to store, in 2 cookie dictionary/keyed cookie, a user's preference for hiding certain sections of each form on the app. It would appear that IE7 has reached some limit for the number or size of the cookie in javascript. I mean that the cookies are only inaccessible on the client-side js, but can be read just fine in our asp.net/vb code-behind.

The functions that need to read the value of these cookies must be on client side because I can't run a postback everytime the function needs to update the cookie. How should I go about getting and setting the cookie without triggering postback? I thought about storing the value of the cookie onload in a textbox, but I don't know when I would read it back and update the cookie.

View 2 Replies

Asp.net - Using Javascript In CK Editor?

Oct 7, 2011

I created a web form in .net. The form need to use WYSIWYG editor. So, I have decided to use CK editor. Now, I have gotten a problem that the CK editor lets to use javascript in the textarea. I don't want to let this. How could I do that?

View 1 Replies

Can't Call Javascript With VB?

Apr 25, 2011

I have a javascript function that should open a pop up window like so

function callBackWindow(url) {
indow.open(url, 'OpenWindow', 'width=1000,height1000,left=-10,top=-10,scrollbars=no');
return false;

[code].....

View 5 Replies

Convert A JavaScript Into Vb?

Sep 13, 2011

in converting the folowing javascript syntax into visual basic one.

if (!event.willCommit) {
var f = this.getField("dept");
f.clearItems();

[Code]...

View 8 Replies

Get Document Of Javascript?

Mar 13, 2009

how to get document objects of a javascript ".js" file in an html page that uses <script src="....js">? Or any other way? I want to click on a link.

View 4 Replies

How To Get Value Of Hidden Row Into JavaScript

Jun 27, 2012

I have a grid column, of which, row X is hidden. I want to pick the values of each column's row x, perform some calculations at client side and display it in row y(through client side code). I am not able to pick values from hidden field in client side. Is there a way I can put those values in a client side array using javascript code, and use it for my calculations. Also when page posts back, the array should get updated with latest values.

View 2 Replies

How To Work With Javascript

Nov 14, 2011

i have a vb.net GUIform that will display an AxWebBrowser to show a html table which have some interactive controls that required javascript to work.I already prepared the javascript with the valid functions.Example:Inside AxWebBrowser have a button, when i pressed the button, it will display the current time inside the AxWebBrowswer. Is that possible to do this? and how? Just place the .js file in the same place and set the src equals to the .js file path? but it seems not work.And after several tried, i found maybe JScriptCodeProvider can do this. but i no idea how to point the src to the jscript running in memory.

View 1 Replies

Javascript - Questionnaire To Run On LAN

Feb 20, 2012

I want to do a questionnaire application which should run on all the clients which are connected to the server. The project is for college event and it should run in college lab how can I go about doing this project, should I use .Net stand alone or asp.Net or can I do it with HTML,Javascript and XML?

View 1 Replies

Javascript Run In WebControl?

May 5, 2009

Will a Webcontrol item display a Web site that uses Javascript? I wrote a small webcam application and added the URL of the webcam to the properties of the Webcontrol item. However, when I rung the app the page attempts to load but halts loading at "Please Wait..." BTW - this is a phone "SmartDevice" application...

View 3 Replies

Javascript Scope With Asp.net?

Jul 2, 2009

I'm probably missing out on something fundamental here but it seems rather tricky and confusing to me so here goes.to demonstrate the issue I have the following example .aspx page

<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

[Code]...

View 3 Replies

.net - How To Set ASP Checkbox State With Javascript

May 1, 2012

In a VB.net app, I have several checkboxes created with regular ASP controls, i.e.asp:CheckBox ID="cb3" runat="server" Checked="true" />I'm trying to implement a "Select all/none" functionality but I'm having a few problems. The Javascript is not changing the state of the checkboxes in Internet Explorer (v9). I tried debugging with IE's dev tools and the checkboxes are definitely getting their checked property set to true. (Also tried setting to "checked".) Here is the JS:

function setCheckboxes( state )
{
var inputs = document.getElementsByTagName("input");

[code]......

View 3 Replies

.net - VB Ticks Equiv In Javascript

Mar 16, 2011

How can I replicate this in javascript?Now.Ticks.ToString

View 5 Replies

.net - Why Won't The ModalPopupExtender Show / ASP.NET And JavaScript

Jul 12, 2011

I'm trying to call a modal popup extender from javascript. Here's the call:

function MyFunction()
{alert("test");
$find('mdlPassword').show;}

I get the alert when it's called, but the modal popup extender won't show. Here's the aspx stuff:

<!-- Popup Extenders Should Go Here -->
<asp:button id="Button1" runat="server" text="Button" style="display: none;" />
<asp:ModalPopupExtender ID="mdlPassword" runat="server"

[code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved