Aspx Framework - To Make A Program That Calculates Some Coordinates And Comunicates With An Airplane

Oct 21, 2010

I recently got a project and i would like to use asp.net to do it . I have to make a program that calculates some coordinates and comunicates with an airplane ( sending data through a radio connection ) . Can I do so with asp.net ? I mean isn't there any restriction in the privacy area? Will it let me send and recieve data to/from an airplane through a radio connection ?

View 1 Replies


Similar Messages:

Configuration :: Trying To Make A Program Work With Our IIS Server?

Feb 2, 2011

I have been trying to make a program work with our IIS server, but it's run into a tricky problem that's been driving me nuts. When I debug the program, everything works perfectly; users are able to log in and they see the appropriate content according to the user's role. When logging in from a remote location, however, the program seems to have trouble finding the users' roles. Users can log in, but they cannot see any role-specific information, so they are stuck on the login page forever.

I tried adding a line of code to find the roles of a particular user. In debug mode, it returned the roles correctly, but when accessed through the server, it returned an empty array that caused my site to crash.

View 1 Replies

C# - How To Make Chat Program Code In Web Configuration

Feb 9, 2010

I was looking for a chat program, and I found it here in Code Project,Build a Web based Chat using ASP.NET Ajax (http://www.codeproject.com/KB/ajax/aspnetchat.aspx)The code is working perfectly,except 2 issues,can anybody tell me how can I overcome these issues?1-how can I get for example the last 2 hours chat from the database, when a new user enters to the chat room? I tried the getlastmessage stored procedure, but because of the refresh, it keeps showing the messages over and over. any solutions?2-In firefox after I hit the enter on keyboard I see two messages instead of one. sometimes it happens in IE too.

View 1 Replies

.net - Make Single Sign On Work With Framework 4.0?

Sep 20, 2010

I have a parent web application and a child web application. I am using single sign on between them. The child application is supposed to redirect anonymous users to the login page of the parent application We just updated both to .net 4.0 framework and now the SSO doesn't work anymore.The setup is as follows. I have the machineKey tag all set up with validation key and decryption key in both applications.then, for authentication tag i have the following in the child app (I have replaced the actual parent app's url with "parentApp" for privacy):

<authentication mode="Forms">
<forms name=".SSOAuth" loginUrl="parentApp/Login.aspx" path="/" protection="All"/>
</authentication>

[code]...

View 1 Replies

MVC :: Convert An .NET (1.0) Web App Over To The New .NET Framework and Make A Boat Load ?

May 12, 2010

I have to convert an .NET (1.0) web app over to the new .NET framework as well as make a boat load of changes to the app itselI have a few questions to some that are using MVC (even though I've read some things on it, I'm looking for real world responses) My current app, uses master pages, - can this remain in MVC?the current app has a drop down that is autopostback and when a user selects a new selection, the page displays that information. Can that process still continue in MVC?

The current app, has a boat load of grids that allow inline editing, I'm looking to take out the inline editing and open a JQuery thickbox or even a modalpopupextender to allow the user to do edits for that row, will that flow work within MVC? The current app also, has several formviews that allows for editing, can they work in the MVC world as well? I've been reading some articles that gridviews won't work in MVC, then I read some saying they do, as well as dropdowns using autopostback.

The app is nothing but grids with or without inline edits, about a dozen or so formviews to read and modify data based on the users permission level, a search, and some dropdowns that autopostback to display grids or formviews based on the selection.I'll be using Oracle as the backend database. So will all or some of the above features work with MVC or should I just do the app in .NET 4.0 using web forms? I'm up for either or, I'm looking to learn MVC and thought this real world project would work (if applicable) to learn it.

View 4 Replies

Visual Studio :: 2010 - Finding Assemblies In Program Files Vs Program Files X86?

Jul 3, 2010

I have a VS2010 project that I want to move back and forth between an x86 and an x64 machine. On the x86 machine, several assemblies are located in Program Files, and the path of the assemblies are shown as c:Program Files...... When I move this project to the x64 machine, the same assemblies are located in C:Program Files (x86).... Is there a way that I can confugure VS2010 so I don't have to manually change the path when I move the project from one machine to another?

View 1 Replies

Visual Studio :: How To Make 2008 To Work With Framework 4

Feb 12, 2010

i have VS 2008 and i want to creat some asp.net sample applications with framework 4.

is there some method or update for vs2008 that let the vs 2008 users use framework 4 and controls?

View 1 Replies

Web Forms :: How To Make Responsive Website Using BootStrap Framework

May 7, 2015

How to make a responsive website using BootStrap Framework in ASP.Net?

View 1 Replies

JQuery :: How To Make Ui-framework Icon Change State On Hover

Jan 28, 2011

I have a button that uses a ui framework icon on a content page as shown below. I would like it to change state if hover so that the user will know it's clickable. I see there is a.ui-state-hoverclass. How do I apply this to the button?

[Code]....

View 2 Replies

C# - Getting Geographical Coordinates From Web Application?

Apr 25, 2010

I want to learn a user's location from his mobile device by web application.

When user opens the website, with the help of a script we will learn if the device has a gps hardware.And if the device has gps hardware what are the current coordinates?

I'm developing my project using ASP.NET

View 1 Replies

ADO.NET :: Fill .aspx Textbox From Entity Framework Model In VS10 C#

Jan 6, 2011

I am using C# with Entity Framework Model. I want to fill a textbox (tbPrepProbComment.Text ) with a string (S0PrepProbSolveComment) from a table (EightDProject). I'm getting the key for the EightDProject from a textbox (SelectTrackingNumber). I'm not sure my query is working because when I look at the query result ( project ) I see the error" 'mykey' could not be resolved in the current scope or context. Make sure that all referenced variables are in scope, that required schemas are loaded, and that namespaces are referenced correctly." If the query was working I dont know how to pull the field from the distinct row it should return and put it in the textbox. I've tried the line tbPrepProbComment.Text = project.S0PrepProbSolveComment; Here is my code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.Objects;
namespace EightD1
{
public partial class Page1 : System.Web.UI.Page
{
public int mykey;
public string comment;
public object obj;
// the entity framework model
EightDdbEntities EightDP = new EightDdbEntities();
protected void Page_Load(object sender, EventArgs e)
{
SelectTrackingNumber.Focus();
}
//When the project id has been selected get projectdata and bind to page data holders
protected void SelectTrackingNumber_TextChanged(object sender, EventArgs e)
{
BindData();
}
private void BindData()
{
try
{
mykey = Convert.ToInt32(SelectTrackingNumber.Text.ToString());
}
catch
{
mykey = 0;
}
ObjectQuery<EightDProject> project = EightDP.CreateQuery<EightDProject>(
"SELECT DISTINCT p FROM EightDProjects AS p WHERE p.EightDID = mykey ");
//tbPrepProbComment.Text = project.S0PrepProbSolveComment;
}
}
}

View 2 Replies

MVC :: NerdDinner: Map / Ends Up On The Exact Same Coordinates On The Map Regardless Of The Address?

Nov 21, 2010

I started a website based on the NerdDinner source code, everything worked fine (more or less) but whenever I post an event, it ends up on the exact same coordinates on the map regardless of the address (Somewhere in the Gulf of Guinea!)

No idea what to do: I didn't alter the map code at all!

View 2 Replies

Simulate Mouse Click Using X / Y Coordinates On Webpage

Jun 24, 2011

Is there anyway to simulate a mouse click using X,Y coordinates on a webpage ? Let's for example say I want to simulate a mouse click at page position x=400, Y=300. How Will I be able to do it using .net or javascript?

View 5 Replies

Web Forms :: Given Lat / Long Coordinates How Can Find Out City Name

Apr 27, 2016

Let's say I have a LatLng , is there any way of checking if it represents a possible location within a city? How can I get the limits of a city? I'm using Google Map.

View 1 Replies

Extract Text And Image From A Pdf In A Selected Area Or Coordinates

Mar 11, 2010

I have a specific requirement of extracting text and images from a specific area in a pdf file.The area might be a selected or highlighted or from a given set of coordinates.

When i went through, all the approaches are to extract images and text entirely from the PDF on not in a specified location. I tried with iTextSharp,Syncfussion,Apose but couldn figure out a better approach for this.

View 1 Replies

Web Forms :: Converting Latitude And Longitude Into X / Y Pixel Coordinates

May 17, 2010

I've been struggling for the past couple of days to get this right. I'm in the process of building something that takes a whole bunch of geographic points, builds a heat map from the data, then overlays it as a tile on Google Earth / Google Maps. A bit like this: [URL]

I have all the heatmap functionality nailed using random xy points. The last part is doing the actual conversion to convert my real lat/lng pairs into x/y pixels to be rendered onto the heatmap image. Lets say I the image is 500px x 500px. I know the min and max values for the lat/lng points, so technically I need to divide the spread between the pixels to get a pixel value for each degree based on the top left pixel of the image (0,0). I've been through so many examples, but I just cant get them to work. The last one I tried was this:

[Code]....

I feed data into my heatpoint function using these 2 functions above like this. Here's a set of 4 points:

[Code]....

The problem I get is that the result is the same for all the points - they all get plotted to exactly the same point. Now, the data is fairly localised, so I dont really need to take the curvature of the earth into consideration.

View 5 Replies

Web Forms :: Image Button Returns Incorrect Coordinates?

Oct 27, 2010

I have an ImageButton which sometimes returns the wrong coordinates when clicked. So far I have seen this problems only on one particular computer but on that system it is consistently out by a factor of about 1.25. The dimensions of the ImageButton are 300 x 450 but clicking in the lower left corner returns 374,562. However, if I raise a button click through code the correct region of the button is accessed and the correct coordinates can be recovered. The browser is IE running under XP SP3. On other computers with the same browser and operating system there is no problem but I don't know how widespread the problem could be. It is not affected by altering the screen resolution. Has anyone encountered this before? Is there a way to test and calibrate an imagebutton (without asking the user to click somewhere special first)?

View 4 Replies

Web Forms :: Creating A Map - Unable To Capture The Coordinates By Clicking On The Map?

Mar 25, 2011

consider the following:


1- My web site has a map. The picture format of the map is jpeg.


2- Each user can add a node in the map by clicking on it.

3- After clicking the coordinates(X and Y) of clicked area is captured

4-Coordinates are saved in the data base

5- Whenever the page containing the map is loaded, for each coordinates stored in the database a small circle (ImageButton) will
be added to the map

I have two solutions for it:

1- Using a ImageButton as a map. I can capture the coordinates of the clicked area as follows:

protected void ImageButton1_Click(object sender,
ImageClickEventArgs e)[code]....

The problem of this solution is that the programmatically added nodes are not visible

2- As an alternative for ImageButton I can use a panel to display the map (BackImageUrl="~/Images/map.jpg").
after creating the btn programmatically I use the following code to add it to the panel:

Panel1.Controls.Add(btn);

Hear the problem is that I cannot capture the coordinates by clicking on the map.I need to enable the user to add the nodes to the map and view them in a single interface.

View 2 Replies

Design A Website / Move The Image Around And It Sets The Coordinates?

Jan 18, 2010

I am trying to design a website in asp.net (just learning) and am having trouble positioning div's on the .aspx page.

I normally design in dreamweaver where you can move the div around freely and it sets the x and y coordinates for you but I am having trouble positioning an image.

Do you have to type the x and y coordinates in yourself in the code behind or in the css or is there an easier way where you can freely move the image around and it sets the coordinates.

View 5 Replies

Make Server Run Aspx Requests With Php

Dec 3, 2010

We are creating a real estate website. The National Franchise site wants to pass us searchs that fall in out local area. The searches MUST follow this format:

/propertysearch/findpropreties.aspx?q1=this&q2=that&q3=other

The issues is that we have built a site in PHP and buying a windows server and learning aspx seems like overkill for this one script.

So... I think I need to make a redirect, like this:

RewriteRule /propertysearch/findpropreties.aspx$ http://texasmls.com/corpSearch.php [R=301,L,QSA]

But it does not work.

In summary:

Does anyone know how to trick the server into running aspx files as php?

View 1 Replies

C# - How To Make A Code Run On All Aspx Pages

Sep 3, 2010

I need to create a code that reads the QueryString and set a value on the Session and on the end of the page I need to clear the Session.

How can I make a code like this to run on all .aspx pages?

View 6 Replies

VS 2008 - How To Make ASPX Page With Textboxes

Sep 21, 2010

I want to make ASPX page with textboxes and dropdown to insert the data into the database and Gridview to display all the data. I wnat some good designs, how can I make the page more attractive with just textboxes,dropdown ,buttons and gridview.

Do somebody have good aspx page, paste just the design here.

View 5 Replies

How To Open .aspx Without Visual Studio And Make It LAN

Mar 27, 2011

I'm currently dealing with my final year project and of course, later I might need to present this whole things to my lecturer.

So, I would like to ask you guys about how to open my website without Visual Studio and make it LAN (can be accessed by two or more computer through LAN).

View 7 Replies

Forms Data Controls :: Displaying Embedded Google Map Given Specific Coordinates?

Jun 22, 2010

I was wondering if anyone has done this. I'm writing an application which parses latitude and longitude into a database. When presenting this information to users I would like them to be able to click on a button which would show them the location in google maps.

Alternatively I could just give them the link to google maps into which they can click on and open a new browser window...

View 1 Replies

Social Networking :: Google Maps API V3 - Get Coordinates (Latitude And Longitude) When Click On Map

Aug 18, 2015

Refer [URL] .... I want when I click on map to show coordinate in text box it show marker in map I mean below marker:

View 1 Replies







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