0
votes
2answers
48 views

ASP.NET CheckBox inside a hidden DIV always returns false

I have some set of form elements within a hidden div as follows: <div id="jDivUpdateFolder" style="display:none;"> <asp:TextBox ID="txtEditFolderName" ...
0
votes
1answer
41 views

When I use window.parent.location.href to navigate, the Url Referrer is not sent by Internet Explorer

When the javascript code is excuted window.parent.location.href = sTargetURLForSessionTimeout; Request.UrlReferrer is null when using Internet Explorer. This is not the case in Chrome, I do get ...
0
votes
2answers
51 views

VB click javascript button/img

Hi i am trying to click a button on a website with VB.NET The Command i use in .AHK is Pwb.document.getElementsByTagName("IMG")[7].click The button/Img HTML is below. <img width="34" ...
0
votes
0answers
12 views

Setting audiences in share point 2010

I have written html/css code to display the menus. Now i need to hide the multi level menus(links) using windows authentication. i mean we need to set the target audience for the links. But,. i do not ...
0
votes
3answers
32 views

Visual Studio 2005 VS Visual Studio Express 2012

I already have the Pro version of Visual Studio 2005. (Using only VB.NET, day and night, to write only WindowsForms exe programs for the past 8 years. 100,000s lines of code.) I now have a need to ...
1
vote
1answer
47 views

How to set a img in my aspx page through javascript?

Maybe it sounds stupid, but I really can't figure out how to set an <img> code in my .aspx page throught JavaScript. My code so far: <%@ Page Language="VB" ...
0
votes
1answer
23 views

How to pass 2 parameters through RegisterStartupScript?

I have a javascript function "initialize (latitude, longitude)" and when I click on my button I want to pass the value from my textbox to do something. Protected Sub btnLat_Click(ByVal sender As ...
-2
votes
0answers
23 views

how to call a outlook function in outlook htmlbody by clicking on hyperlink in outlook addin application [closed]

how to call CreateOutlookContacts function on click on activation link .. outlook function code is given below mailItem.HTMLBody = " Hi, Welcome in Constacts World.... Please click on below ...
0
votes
1answer
85 views

JavaScript runtime error: Unable to get property 'innerHTML' of undefined or null reference in asp.net

I have a textbox in which user will write some text. Now If he wants to print that text he should click on print button. The design of Print button is as follows: <asp:Button ID="btnPrint" ...
1
vote
1answer
40 views

Novice Menu/SubMenu issue

I am still new to ASP.NET web programming so hopefully someone can help me out. I have a horizontal MainMenu and another horizontal SubMenu directly under it. I am loading these from a database into ...
0
votes
0answers
37 views

RSA over Jquery Ajax

The company i work for has found a problem working on a new page, in sending new/modified users passwords when the account is saved to server side code from client side using jquery ajax. At the ...
0
votes
3answers
71 views

Stop page reload of an ASP.NET button

NET application, I have inserted a button that call a Javascript function (OnClientClick event) and a VB.NET function (OnClick event) <asp:Button OnClientClick="jsfunction() " OnClick="vbfunction" ...
0
votes
1answer
51 views

How to sort by a second column while keeping the sorting on the first column?

I am working on table that is built dynamically depending on filters chosen. I currently am able to sort by any row that I click. The problem is I need the first row that I sort by to stay when I ...
0
votes
0answers
39 views

Return a image from web-service(vb.net) to javascript

I got this code when i was googling on server side code to re-size image in vb.net (i.e. creating thumbnail), this code works fine but i have got no idea how to return the image from the web service ...
0
votes
1answer
31 views

VB.NET Javascript - Setting Table Row Styles when creating table

I'm trying to use this project in VB.NET: http://www.codeproject.com/Articles/29436/Expandable-panel-inside-a-GridView The problem I'm having is on the table row ID: My Project: <tr ...
1
vote
2answers
94 views

VB.NET: How to execute jquery code when pressing enter in textbox

I have an issue where I'm trying to execute a search query from a textbox and attempting to use enter to initiate the search; however, it doesn't seem to be working. I'm wondering if vb.net/asp.net ...
0
votes
2answers
254 views

Pass Session Variable to another page Javascript

I guys, I'm creating a VB.NET application, and this is the first time that I used Session Variables. What I want to do is to pass the session variable from a page (first.aspx) to another page ...
0
votes
2answers
38 views

How to prevent user to connect from un-authorized device to my web app?

Hi I need to implement something to prevent users connect to a webapp, from another computer or mobile that it's not authorized, for example if the user enters the user and password correctly and the ...
-1
votes
0answers
47 views

VB webbrowser click javascript button

trying to auto click this button in VB for a week now is not going in any code i tried any help code i can use<div id="fC" class="button">Flow Control</div>
-3
votes
0answers
41 views

Pulling email ids from database and sending an email [closed]

I am trying to send a mail to multiple set of recipients but i can't enter the recipients email id's in my code. They must be pulled from the database where they are stored in a record and to that ...
0
votes
0answers
25 views

Switch image between matrix/grid view

I have created the table in database that contains few columns as well as path of the image as separate column and retrieved the images with the other columns using web service in vb.net and displayed ...
0
votes
1answer
31 views

Cookie not getting deleted

In my asp.net application, am creating a cookie from server side using following code Dim aCookie As New HttpCookie("StartDownload") aCookie.Value = "True" aCookie.Expires = ...
0
votes
1answer
107 views

VB.NET MessageBox using Code Behind variables @ OnClick

I have the following procedure which when the Select Button is clicked returns a number of values from the row in the GridView which the Select Button was clicked in. These values are stored as ...
1
vote
2answers
105 views

Display List Items in a label using Javascript

Hey guys I have been stuck on this issue for a couple of days. I have two list boxes that a user can transfer data back and forth between. I need the items that are in the listbox on the right to also ...
0
votes
0answers
421 views

“ Failed to load resource: the server responded with a status of 500 (Internal Server Error)”

I really can't understand what is Exact problem here while calling the web service in the html page with JavaScript using ajax as it produces the error below: Failed to load resource: the server ...
0
votes
1answer
82 views

Popup window losing focus

I have a print preview button on an asp.net page that opens a new window with a pdf version of what's currently on the screen so the user can print it out. However, this window loses focus because an ...
0
votes
0answers
49 views

Get local time zone of client from respective browser

I need to capture local time zone of client based on the browser Like if client comes from US: Time1 and if client comes from India: Time2 Javascript method to get datetime based on browser save ...
0
votes
1answer
112 views

encode/decode Query String ReturnUrl Parameter

I am sending the return url as a query string parameter like this http://localhost:50316/TripNestFinal/Login.aspx?ReturnUrl=~/Account/AccountSettings.aspx But i want ~/Account/AccountSettings.aspx to ...
0
votes
0answers
42 views

ajaxpro is not working with IIS 7 and windows server 2008

I had a website which was operating in iis 6 (windows server 2003) so now, we have upgraded our web server to 2008 with iis 7, now the problem function which are using ajaxpro are not working!! I ...
1
vote
3answers
146 views

Time picker ONLY in asp.net

I am creating an vb.net page. The page is to allow users to schedule lectures, appointments etc. I have a few text boxes to add the details. I have used the asp:calendar control to select the ...
0
votes
2answers
36 views

Are problems in achieving find the separator location in javascript

I have a question. I was wondering how I can find the separator location. Or have the date in the format DD / MM / YYYY without having to force the slash. Any suggestions? Thanks
0
votes
1answer
128 views

Streaming QR Code Image into Your ASP.NET Web Pages Using ASP.NET Barcode Generator and click to download

I am Streaming QR Code Image into my ASP.NET Web Pages Using ASP.NET Barcode Generator http://www.onbarcode.com/asp_net/qr-code-generator.html i want to download this image on click of a button. I ...
0
votes
1answer
35 views

Drawing inside Canvas Tag after set Visibility

I have this code. <asp:Panel id="aPanel" runat="Server"> <canvas id="aCanvas" width="200px" height="200px"></canvas> </asp:Panel> Inside this canvas i draw lines with ...
0
votes
0answers
59 views

JavaScript/ASP.NET - Javascript not rendering (dojo toolkit)

I'm trying to get Dojo running on an ASP.NET page. However, the 'Gantt' chart is not rendering. I followed the code from here. This is the code: <%@ Page Title="" Language="VB" ...
0
votes
1answer
24 views

CDate for Javascript

I have been using CDate in my program and the worry part is , it works only in IE. cdate(strValue) . If I pass the value of strvalue as 01/02 , it returns as Wed Jan 2 etc . Am looking for the same ...
0
votes
2answers
73 views

Isdate javascript code

When the user types date as 05/04 in the textbox and presses enter, i am using the following code to check whether it is a date. And the code is window.execScript("dim ...
1
vote
1answer
46 views

wcf service unable to parse datetime from javascript running in ie

I have a WCF service with a method defined like so: <WebGet(), OperationContract()> Public Function GetScene(cameraId As Integer, time As Date, bufferSize As Integer) As Scene and ...
1
vote
1answer
48 views

Problems using Ajax call to recieve data record

I'm having some problems making an ajax call to receive a database object. I am making the ajax call in the View to pass a value from one of the HTML elements in the view to a method in my controller, ...
0
votes
1answer
51 views

Returning single ID in JSON from a web service

I'm fairly new to working with client-side coding and was wondering what the the best way of returning a single ID from a simple Insert in a web service would be. Copying code that returns more ...
0
votes
1answer
97 views

Vb.net fileupload preview image using javascript

I want to up load image using fileupload and preview the selected image before submit, but it can only work in firefox and IE6. I want to work in IE 7 8 and chrome, also it should work in firefox ...
-1
votes
2answers
108 views

how to access parent page from iframe and store url in input tag

Hi How can I access iframe parent page and store url in input tag from javascript,i try eniting byt not result best for me. I have one htm page in and the other side where the form with buttons. I ...
2
votes
1answer
28 views

Collapse RadFileExplorer using Javascript

I have a RadFileExplorer, my problem is I can't find a way to collapse the node after close of a pop-up page in javascript. My code doesn't work. function collapseNodes() { $find("<%= ...
0
votes
2answers
48 views

How to replace td text in VB.net

I have this code <asp:Panel ID="pnlWindHailExclusionDirectDamage" Visible="False" runat="server"> <tr> <td> Wind/Hail Exclusion - Direct Damage: </td> ...
0
votes
1answer
137 views

Masterpage javascript causes an object reference error when asp.net control doesn't exist in the content page

So here's the deal: I have an asp.net control that is located on some content pages but not others. I would like to reference this asp.net control within a $(document).click event, the code for this ...
0
votes
1answer
90 views

OpenWebkitSharp for .NET — any trick for getting Javascript to work with it in this scenario?

I am using the OpenWebkitSharp browser in a VB.NET project. What I am trying to do is use WebkitBrowser1.Navigate to display some HTML in the browser "on the fly". This works great for basic HTML, but ...
0
votes
1answer
41 views

Javascript Windows UI Automation

In VB.NET, I can automate application installs using Windows UI Automation. Is it possible to do this in javascript? vbscript would also be acceptable but javascript is preferable.
0
votes
1answer
35 views

Windows UI Automation from a Web Page

I have VB.NET code that handles automation of various application installs. I want to move this essentially out of a VB generated EXE package, and be able to execute the same code (or the equivalent ...
0
votes
1answer
122 views

Pop up label on JVectorMap

I am new to jQuery and have been developing a JVectorMap. I have created markers but I was wondering if anyone could help me with creating a pop up window or label that appears when one of the markers ...
1
vote
1answer
91 views

not able to get value of labels that I have set in javascript

I am setting the value of two labels using javascript. My code works fine when I set the text of the two labels. However, I want to use text of label on a button click, but I am not able to get the ...
0
votes
1answer
51 views

not able to add 2 no.'s in java script and add value to label

Guys I have a java script code where on radio button click I am setting text of label the no. associated with radio button and if again another radio button is clicked I am adding its corresponding ...

1 2 3 4 5 15