Web Forms :: Get Information That Does Not Change?
Sep 20, 2010
How do I get information that does not change?
For security reasons I get rather than IP information, which does not change.
IP is changing, if the dynamic.
I need information that does not change.
View 1 Replies
Similar Messages:
Aug 10, 2010
i have an .aspx website, within the site am planing on having a staff directory, i have setup the search, the results and also a more feature to display all there information.
When you click the More button it is supose to display the text with an image of the person. the images are located on a server and are named via staff ref. below is the code i am trying to use to display but am having no luck so far
[Code]....
View 4 Replies
Jan 5, 2010
When user come to site we know user IP. but how I can know country, reagion, city and etc. about this user.
Example If I know country I need show special content for it.
View 5 Replies
Jan 1, 2010
while creating users/groups using web site administration tool, is there a way to configure it to store to a specific database rather than store to a Microsoft SQL 2005 Server Express Edition by default in the App_Data folder?
View 2 Replies
Jan 19, 2011
I am making an online form (literal form) that needs to have a certain function: when the user enters a 5-digit number, the form should automatically query the MS SQL DB and retrieve information associated to that number and populate other form elements (text boxes, etc.) accordingly.
So say the # was 12345 and in the DB, the record matching 12345 has name=Fred. So, when I enter 12345 into the form textbox, the name text box should be automatically populated with Fred in it.
If this is not easily achievable, I guess a submit button beside the 5-digit number text box can do.
I am still learning my way around ASP.NET and Visual Studio 2005, however I have ample experience with HTML, CSS, JavaScript, C/C++. The ASP.NET app is to be written in C#.
View 1 Replies
Dec 6, 2012
In my repeater m using linkbutton for paging. I want javascript or code... My question is at run time when I am clicking on linkbutton its color get change... When I click on another button its color get reset...
View 1 Replies
Apr 20, 2010
How to change the values in gridview on text change of templated control without databind again?the value of templated text boxes should change If i change the value of one of the templated textbox then accordingly(By mathematical calculations) the vlaues of all tempated textboxes should also change.
View 7 Replies
Sep 14, 2010
When i run the following code i get an error when gridview changes mode to Edit. stating that you can't change string to decimal!
To get around the occurance i want to disable code when in Edit mode or resolve another way?
GridView1_RowDataBound
For Each row As GridViewRow In GridView1.Rows
Dim cell As TableCell = row.Cells(7)
Dim invoicetotal As Decimal = CDec(cell.Text)
View 2 Replies
May 27, 2010
I am using this code to generate the current date to label.
Label14.Text = DateTime.Now.ToString
It output as 5/27/2010 10:31:53 AM
However I want only 5/27/2010
How should I change this code ?
View 3 Replies
Feb 25, 2010
I wanna set a default value in dropdown list when i change in list.....e.g.
I have a dropdown which i have placed in Gridview templates and there is another dropdown jst above that grid....i want...when i change in above dropdown and select a value from that...then that value should be apply in below gridview's dropdown...
As i am selecting 'A' then Gridview's All Dropdowns default value should set 'A'
View 10 Replies
Mar 7, 2011
I have a gridview in which I have several editable fields. The user wants a non-editable field to be modified if another field is modified in the same row. e.g. if Age>=65, Status should ="Retired"
I am using the following demo: [URL]
to create a bulk edit gridview so some columns are automatically editable and others aren't, with a single update button. I can set Status="Retired" in the xml generated, or as a rule in database table. But I'd like the status field in the gridview to change when Age is modified and to be shown to user before they press the single Update button. I'm using update panels and ajax on the page also.
View 1 Replies
May 29, 2010
I have usercontrol, I have develop menu there like this
[Code]....
This user control i put several pages. When i goto that perticular page i want change background image of menu item which related to that page.
View 1 Replies
Feb 8, 2010
[URL]
how i can,implement this page?
at the first a picture,second description,and last a link for download software...
(supposition: all of the information is in my rows db)
i dont know use 'listview' or 'gridview' or another,and which is better,and howto?
(i dont very thing about that)
View 5 Replies
Jun 16, 2010
I have problems trying to get information from a textbox when do a post of th page. I need some help with that.
<
tr
valign="top">
<td>
<asp:TextBox
AutoPostBack="false"
TextMode="MultiLine"
Rows="3"
Width="350px"
runat="server"
ID="SiteNote"></asp:TextBox>
<asp:RegularExpressionValidator
EnableClientScript="false"
ID="SiteNote_validator"
runat="server"
ErrorMessage="ERROR"
ControlToValidate="SiteNote"></asp:RegularExpressionValidator>
</td>
</tr>
View 9 Replies
Sep 1, 2010
How to get information of client pc behind router using c# in asp.net
View 5 Replies
Sep 18, 2010
I created an image button called "pic1" with the OnClick feature. When clicked it runs "btnClicked". In the sub "btnClick", how would I get information? One example is to get the button tooltip. I tried this: request.form.item("pic1.tooltip"). That did not work.
View 9 Replies
Jan 6, 2011
I want that when i click on SUBMIT button of my form, all the information of the form should be mailed to particular email ID. How can i add that functionality using .net framework 3.5 & visual studio 2008.
View 3 Replies
Mar 2, 2010
This is a newbie question, and yes I have searched the web and the Help section. How do I display non-Bound information on the forms? Perhaps I should explain a little better.I have a form where I use dropdowns and other items to insert and update fields. These fields work correctly.
View 6 Replies
Nov 23, 2010
I have a <div> tag in html page in asp.net as shown below:
<div id="DestAdd" runat="server"></div>
The above tag store information like "Jurong West".
The following code store the address in its innerHTML:
document.getElementById("DestAdd").innerHTML = DestRoadName;
I would like to retrieve the information "Jurong West" stored in the <div> tag in code-behind:
string retdata = DestAdd.?
View 10 Replies
May 21, 2010
in a web page i can fill a form and after submit a was redirected to a confirmation page and there, i must confim and then it's submited.
i'm creating a bot for filling the form but i idn't know how to do it in just one step. this means to send information and confirm withoud waiting for loading confirmation form and then confirm that.
is it possible?
View 3 Replies
Jan 31, 2011
I'm using asp.net - I need to grab live data from a website. Here's an example:
[URL]
That website provides live data share prices. I need code to retrieve the share price from the website and display it in my own page. I know you can get share price widgets online but all I need is a simple way to retrieve the share price values.
View 5 Replies
Oct 24, 2010
Every morning we get a few hundred emails from our various customers servers that tell us how their backup went that previous night. Somebody has to go through these and fill out an excel spread sheet. I would like to automate this, we have our own server running a .NET application so i can schedule something every morning.
There are two main parts. The first is i want to know how to create a table that has customers down the left and dates accross the right, they are called pivot tables in access but not sure how to recreate them in MSSQL and to do it on the fly as i dont want to have to sit there entering 100's of days at a time.
The second is that differnt customers use differnt backup solutions, so i want to write some code that scans a particular mailbox in exchange, looks for emails that have come in in the past 12 hours, look at the from email address and match that to one in the database, then according to the subject line it will be able to identify what type of backup solution it is, e.g. if it says "Backup Exec Job completd Sucessfully" it knows its backup exec and will look for a particular text (completed successfully, completed with exceptions, no media etc) and can insert that, or if its a differnet backup solution then go and look at a specific place in that email for it.
View 2 Replies
Aug 16, 2010
Using try, catch finally, and end try, what is the best way to display informaiton out of the exception.
View 4 Replies
Jan 28, 2011
I want to produce a relatively simple webpage which would contain a drop-down list and a button. When the user makes a selection on the drop-down list and clicks the button (or image), the page would query a SQL database and output the results of that query to an iFrame that would be embedded in the lower half of the page. I've managed to figure out the necessary code for populating the drop-down list by using a stored procedure, and I've managed to figure out a way of having the resultset displayed on a second page but I want to now finesse it and get all of the information displayed on a single page.
View 1 Replies
Dec 17, 2010
My development PC crashed, due to a faulty drive, and im sitting up my site on a new pc, (the website runs on a different domain than the one i develop on)
I've copied the data over and im using Visual Studio Express addition 2008.
My problem is this, the site no longer detects who i am and one groups im a member of in the domain. It still works on the "primary" network but not on the development network, even though iv copied it straight over.
Here is the code that detecs the user and such
[Code]....
View 2 Replies