131 Posted Topics

Member Avatar for arelius
Member Avatar for himanshu_roy81

try [URL="http://msdn.microsoft.com/en-us/"]http://msdn.microsoft.com/en-us/[/URL] they have tutorials and descriptions. Also try [URL="http://www.4guysfromrolla.com/"]http://www.4guysfromrolla.com/[/URL]

Member Avatar for Fortinbra
-1
53
Member Avatar for TheAlex

I can't remember the specific namespace, but .NET has a built in URLEncode, and URLDecode functions that take a string and make it compliant with standard URLs

Member Avatar for Fortinbra
0
479
Member Avatar for shmy789

The more appropriate way of doing it would be to use JavaScript to move the images as a marquee, being as the marquee tag has been deprecated and will cause the browser to render in quirks mode, if it has one.

Member Avatar for Fortinbra
0
114
Member Avatar for Nitin Daphale

You might also try converting to universal time when storing in the database, and then applying the time zone when pulling it out.

Member Avatar for Fortinbra
0
73
Member Avatar for vickyptk

There is more than one way to do it, but they are all very involved procedures. They all involve changing your controls to being localizable.

Member Avatar for Fortinbra
0
78
Member Avatar for emily-bcot

If you put your connection string in your web.config, you can use the obfuscater to encrypt your entire file, and also you want to surround and data entry points with code that checks against database code. So that they can't type a select statement into a search box and gain …

Member Avatar for kvprajapati
0
117
Member Avatar for hassancool

My first thought is corrupt data... but if the code runs correctly, it my be obfuscated code. You won't be able to reverse it easily back to human readable.

Member Avatar for Fortinbra
0
152
Member Avatar for CaffeineCoder

[URL="http://www.4guysfromrolla.com/"]http://www.4guysfromrolla.com[/URL] That is a really good one, covering a broad range of topics. The MSDN library online is another good resource, and is almost always my first stop when I have an issue. I've always prefered books as a resource, and from SAMS publishing, there is the ASP.NET 2.0 Unleashed, …

Member Avatar for Fortinbra
0
115
Member Avatar for MARKAND911

Easiest answer, disable autopostback on the dropdown. the password form is getting posted back to the server every time there is a postback, you'll need to grab it at the same time you take care of the dropdown box, otherwise you need to change when your postbacks are occurring.

Member Avatar for questpond
0
178
Member Avatar for srilekha nikky

There are several ways of doing this, the one that Microsoft reccomends against doing is using the office interopt. If it's an excel 2007 or newer file, you can open it like its a zip file and parse through the xml contents from there (System.IO, System.IO.Packaging namespaces)

Member Avatar for inplainsite
0
164
Member Avatar for sweetkinjal

Easiest way is to use the Aspnet_regsql.exe, and it will add all the tables, stored procedure, and anything else necessary to allow .NET to manage your logins and users for you.

Member Avatar for kvprajapati
0
313
Member Avatar for manjunath_praj

Because of ASP.NET's view state functionality, this can be a tricky thing to do. If you add all your textboxes during the OnInit, and maintain that they all have the same names as before the postback, then you'll be able to add to them, and even give the new ones …

Member Avatar for Fortinbra
0
144
Member Avatar for Sarama2030

[QUOTE=Sarama2030;1460962]I'm creating this web application using asp.net in conjunction with vb.net. will i have difficulties in finding a host company around given people prefer the more open source frameworks like mysql instead of sql server and Apache instead of iis. what other constraints could i face in publishing this app, …

Member Avatar for Fortinbra
0
163
Member Avatar for miyoi

Do you need your menu to be data driven, or is it gonna be a static menu? If it's gonna be static menu, you'll be better off from a performance angle to simply leave it in HTML and just use it on an aspx page. If you need it to …

Member Avatar for miyoi
0
134
Member Avatar for CSharpUser

I think you may have a problem with your RegisterStartupScrip, you could be using RegisterClientScriptBlock instead.

Member Avatar for CSharpUser
0
426
Member Avatar for Fortinbra

I've searched the net high and wide for the answer, and yet came up with nothing. Right now, in out web.config file, we have our database connectivity stored in 2 different ways. We have our connection string, and we have it broken up into parts in our application settings. Crystal …

0
65
Member Avatar for Fortinbra

We're using IE and an ASP.NET web application to open Word documents stored on a shared directory on a server. From ASP.NET we're passing the path to the file (\\server\path\file.doc) and in Word 2007 and older, using any version of IE, this works, even for multiple files at once. In …

Member Avatar for Fortinbra
0
116
Member Avatar for roymrinal123
Re: help

You may want to set a datatype with your val() functions. such as if you want the decimals: [CODE]wag = (Val(bsc) as Double / Val(DropDownList1.Text)as Double)*Val(TextBox7.Text) as Double TextBox9.Text = (Val(wag) as Double).ToString [/CODE] this is provided your doing this in VB. If you don't want the decimals just tell …

Member Avatar for Fortinbra
0
105
Member Avatar for Fortinbra

I'm using a silverlight client to consume a custom web service in ASP.NET (.asmx). When running in IIS on my Local Machine (IIS 7.5, Win 7 Enterprise x64), the web service works fine. Trying to connect to my machine from another, I get a cross domain exception. The web service …

0
53
Member Avatar for sandesh35

This actually sounds like a question for GoDaddy's support. Are you running on an older account using IIS 6, or IIS 7? Your control panel for GoDaddy will tell you your IIS version. I'm not sure whether the type of module your creating was capable on IIS 6. It may …

Member Avatar for Fortinbra
0
138
Member Avatar for larsh

You test is being done after the details view is posting to the server, which in turn is posting things into the database. You'll need some form of test before the postback, or to manually handle the database access. You could do a custom validator on the client side, or …

Member Avatar for Fortinbra
0
122
Member Avatar for larryzoy

I can't say I understand the question. Are you trying to customize your companie's proprietary software to include another feature?

Member Avatar for Fortinbra
0
59
Member Avatar for 123mehran

This should be a rather simple task to complete, what kind of calculator, what do you want it to look like, how do you want to accomplish this? I'm willing to advise you through this, but you have to do the heavy lifting yourself. Making a calculator was one of …

Member Avatar for Fortinbra
0
168
Member Avatar for larsh

I wanna say to grab the control array, and then you can manipulate the text box from there. This has a tendency to get hairy though. May I ask why you have a server side message box in your code? When you push to a production environment, those message boxes …

Member Avatar for Fortinbra
0
178
Member Avatar for Bandit390

The table tag is an easy route, but not the only route, nor the standards compliant route. Tables are supposed to be used for tabular data, not for page layout. Your best bet would be to group your controls together in the order you need them in using div tags, …

Member Avatar for Fortinbra
0
189
Member Avatar for NitendraTRIC

Try watching your resources in the task manager as you run your page, and see if it's using an abnormal amount of resources. The development server (nor IIS for that matter) do good checks for memory leakage. Makes sure your Visual Studio has the latest patches, make sure windows is …

Member Avatar for Fortinbra
0
67
Member Avatar for RajendraReddy

Is this a homework question? If it is, then you need to research the answer for yourself. It won't help you in any way if you can't find answers for yourself. One of the best skills you can have in the world of IT, or any other profession for that …

Member Avatar for Fortinbra
0
89
Member Avatar for kiranbvsn

When going global, you would want to make sure localization is enabled, and create the proper language files to go with it. If your company has an internet facing web-server already, you won't need to host the site somewhere else, which would make your database connections easier. Publishing globally and …

Member Avatar for Fortinbra
0
195
Member Avatar for Rpower

You can pass variables over to html pages, but it requires some extensive JavaScript to do so, as well as exposing some of the information to the user via the URL.

Member Avatar for Fortinbra
0
111
Member Avatar for soft_coder

How can you not have a root folder in your web app? The root folder is the base folder for your app. It's the folder where your entire app is stored. And there are some DLLs that for whatever reason, just won't load with ASP.NET. Make sure your version of …

Member Avatar for Fortinbra
0
212

The End.