I am an experienced .NET programmer, and I make a lot of websites with financial calculations, text boxes, reports etc.
I have a particular page that has numerous textboxes for a person to type in numeric data; I validate the textboxes etc. when the data is submitted, etc.
Whenever I display...
Problem: They want commas in numeric data in a textbox.
I am an experienced .NET programmer, and I make a lot of websites with financial calculations, text boxes, reports etc.
I have a particular page that has numerous textboxes for a person to type in numeric data; I validate the textboxes...
sergeiY
I have had the same problem with NT4 and 2000 boxes, and I have always tried to install the parser DLLs piecemiel with varying degrees of success. I did not know that upgrading IE would also upgrade the MSXML parser set; I must have missed that at the microsoft downloads site.
chiph I...
When I wrote that last post "This will tell you who is currently logged into the machine", your big post "for anyone who is interested" had not yet appeared on this thread;
So my post just ended up repeating what you had already posted, I think the two posts must have been...
This will tell you who is currently logged into the machine
Response.Write("<br>windowsName = " & System.Security.Principal.WindowsIdentity.GetCurrent.Name)
Response.Write("<br>windowsIsAuth = " &...
This will populate the indicated textboxes with all of the authentication data.
void Page_Load(Object sender, EventArgs e)
{
IIdentity id = HttpContext.Current.User.Identity;
if(null != id)
{
contextName.Text = id.Name;
contextIsAuth.Text =...
Does anyone know the class property that is used to show the last time the project was built or rebuilt? I have searched the msdn knowledge base, and someone suggested it might be the system.reflection classes, but I am unable to determine which property.
Can anyone help? I imagine there must...
dvannoy
if the field values are from text boxes where forces unknown could type literally anything,
then make sure to do replace statements to get rid of single apostrophes:
DBInsert.CommandText = "UPDATE Table " & _
"SET Field1 = '" &...
Does anyone know the object & properties to expose the last solution build date and time? I wanted to post the data on one of my administration pages since my project has multiple developers. I have looked in the help files but I can't find the appropriate object. Thanks if anyone has any...
My login page has two textbox objects and a submit button object (each text box has required field validators too).
The login page submit button will respond to pressing the enter key, and the request.form collection contains the three text boxes and the submit button.
My problem: Another...
Thanks flumpy
I could never figure it out. I've done sites that were all SSL and sites that were all anonymous access but it never occurred to me that I could access a single site using either http:// or https://.
I appreciate your help!
Nelson
Thank you flumpy
The thing that gets me, when you look at amazon.com for example, their site is http://amazon.com until you get to the point where you use a credit card, and then it switches to https://amazon.com.
Do they have a separate website with the https:// SSL and another with the http://...
Does anyone have experience developing credit card XML pages? I have successfully used XML to get shipping data from the UPS server, but I don't use SSL for that. I need to use SSL for my credit card page, but I am not sure how to configure my site as anonymous access and then suddenly switch...
I am not sure if I am posting this in the correct forum; Does anyone have experience developing credit card XML pages? I have successfully used XML to get shipping data from the UPS server, but I don't use SSL for that. I need to use SSL for my credit card page, but I am not sure how to...
CDNJungler
The same thing happened to me on two of my sites. The session was dropping dead when users viewed pop windows on my site and closed them. Closing the pop windows would close the session! The session variables would all drop dead. I tested this over and over, writing all session...
Haijun
Your page would have to redirect back to itself, thereby reloading the page. The querystring that you set in the redirect (thispage.asp?update=category) would be read at the top of the page (If Request.QueryString("update") = "category" then ...). then your page...
Does anyone have a good idea how to handle a problem like this?
I am writing rather long tables of financial data on asps; the financial data elements are stored in my database as "money" data type elements which has 4 numbers to the right of the decimal point.
When I display the...
One of my ASPs produces a detailed tabular report from one of my databases. I want to provide automated emailing of the report to the user. Typically when I do this, I have a separate email function that writes the data to a message body string and sends the email via CDONTS.
I recently saw a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.