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...
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.