Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #3K
~76.4K People Reached
Interests
photography

26 Posted Topics

Member Avatar for samaru
Member Avatar for Mapper99

Are you trying to clear the text box when it gets focus? if so, the see the code below. (I'm not too sure what you wanted to get out of the [icode]onclick[/icode] event.) [CODE=html] <html> <title>test</title> <script type="text/javascript"> <!-- function clearDefault(arg) { //alert("Test"); arg.value=""; } // --> </script> </head> <body> …

Member Avatar for Mauricio_5
0
2K
Member Avatar for M_K_Higa

Greetings - I need your help. I have an SSIS package with a [icode]Data Flow Task[/icode] which has the following Data Flow tasks: [icode]Excel Source[/icode] -> [icode]Data Conversion[/icode] -> [icode]SQL Server Destination[/icode]. The data in my Excel worksheet contains strings as well as numbers. (Also has some blank cells.) I'm …

Member Avatar for M_K_Higa
0
206
Member Avatar for comp_231

If you are using the .net framework 2.0 or greater, you may want to look at the PreviousPage property of the Page object. For example, let's say you have a hidden field in your original page named [inlinecode]hfTheHiddenField[/inlinecode] and want its value when you get the target page. You can …

Member Avatar for Sals
0
172
Member Avatar for mikefitz

If you want to open an external app on the client, then asp.net won't help. Asp.net is server side. When using System.Diagnostics.Process, you can open external apps, but it opens on the web server, not the clients machine. If you want to open an app, such as notepad, on the …

Member Avatar for tcornejo
0
891
Member Avatar for Sarah Lee

Since you are capturing user action via popup, you will most likely use client side scripting to get the user input. Once you get the user input, you can set it to some control in your form which will get sent to your server when the form is submitted. Here’s …

Member Avatar for anthonyqkiernan
0
5K
Member Avatar for vkk

It looks like you want to do some logical grouping. Here's what I would do.... [code] C1 C2 C3 Grp 41 te cc 1 42 te cc 1 51 te cc 1 41 te cc 2 42 te cc 2 51 te cc 2 41 te cc 3 42 te …

Member Avatar for vkk
0
135
Member Avatar for kavithabhaskar

I think you have to qualify the field, "GRAPHICSVERSION" in the case statement. You have: [CODE]cmd = New OleDbCommand("SELECT table2.GRAPHICSVERSION, case when [B][COLOR="Red"]GRAPHICSVERSION[/COLOR][/B] IS NULL then 0 else 1 end as ExistsInTable1 from table2 left outer join table1 on table2.GRAPHICSVERSION=table1.GRAPHICSVERSION",con)[/CODE] I think you need something like this: [CODE]cmd = New …

Member Avatar for kavithabhaskar
0
124
Member Avatar for tecktalk

Don't feel that you missed the boat; that was probably a boat you were better off missing anyway. It's good to get into the habit of writing correct code; breaking the habit of writing bad code is difficult. Depending on your DOCTYPE declaration, this may raise concerns. As PKern states, …

Member Avatar for sreein1986
0
97
Member Avatar for bhavna_816
Member Avatar for TCBW
0
118
Member Avatar for mattyd

God created the world in 6 days; not 7. God rested on the 7th day. This is Fact based on faith! There was a point in time when folks believed that the world was flat. The world was as round as it was back then as it is now. Why …

Member Avatar for ~s.o.s~
3
10K
Member Avatar for M_K_Higa

Greetings, I've posted this question in other news groups (msdn and a few others) without any response.:sad: I hope I don't get into any trouble for posting this question here, but I reach out for your help.:confused: I have an excel file stored in a data base table as an …

Member Avatar for M_K_Higa
0
988
Member Avatar for jberry

Have you considered puting this code in a stored procedure instead of a view? This type of code is easily implemented in a stored procedure. If you require a view, then you may want to create a stored procedure to populate a separate table. This table can be populated according …

Member Avatar for M_K_Higa
0
70
Member Avatar for christina>you

I've thrown away my cell phone about three years ago. (I was happy with the phone, but angry with the carrier - the one with the trench coat guy.) I had a Kyocera smartphone - it had a built-in palm. I've been happy ever since. ;)

Member Avatar for ~s.o.s~
0
547
Member Avatar for stupidenator

It's not functionality that comes out of the box, but I believe you can do this. Let me divide your question into two parts. PART 1: First of all, each page in a Sharepoint site is ultimately an asp.net page. This fact opens up a lot of possibilities. A) You …

Member Avatar for kumar.nitesh
0
104
Member Avatar for tleisher

The demand for web "programming" has certainly risen. But... To me, web programming is nothing more than a client/server paradigm. I started my current job 10 years ago. Before that I was working as a construction engineer. At the time, my local newspaper listed tons of "Computer" jobs which were …

Member Avatar for jamello
0
465
Member Avatar for someoneelse

Tell us your requirements. Did you find any third party controls that do what you are looking for? If so, which? This gives us a better picture of what you require.

Member Avatar for M_K_Higa
0
80
Member Avatar for quiptro

You can create a view to get the data you want and the import it into excel. The "Import External Data" is in the Data menu, and is wizard based, so it's pretty easy. If your data changes, all you have to do is refresh your excel sheet and you …

Member Avatar for quiptro
0
803
Member Avatar for maui_mallard

My wife says my brain capacity is equal to a two year old. Does that count? :rolleyes:

Member Avatar for jbennet
0
225
Member Avatar for cassyjack

It looks like you have some syntax errors. In your code, you have [inlinecode] if (RadioButtonList1.SelectedIndex = 0)[/inlinecode] -- it should be [inlinecode]if (RadioButtonList1.SelectedIndex [B]==[/B] 0)[/inlinecode] -- notice the double equal sign. The single equal sign, in this case, is used to assigning a value to a variable, whereas a …

Member Avatar for cassyjack
0
139
Member Avatar for Sarah Lee

Kind of confused... Let's simplify this a little bit by assigning variable names to each date. A = 2/1/2007 (First day of current month) B = 2/19/2007 (Current date) C = 3/10/2007 (Some future date) D = 1/12/2007 (Some past date) Do the parenthese describe your requirements? Now, what are …

Member Avatar for Sarah Lee
0
106
Member Avatar for M_K_Higa

I want to surround the html results from a `GridView` control with a `<fieldset>` tag. I need to do this on the server side. I have a situation where I need to build multiple `GridView` controls during runtime because I don’t know how many data sets I need during design …

0
66
Member Avatar for M_K_Higa

Ok folks. I just found a cool Button property called [inlinecode]Button.PostBackUrl[/inlinecode]. It works fine when you set this property and click on the button -- it takes you the page specified in the [inlinecode]PostBackUrl[/inlinecode] property. At first glance, it looked very promissing for cross-page coding. Here's my problem... I have …

Member Avatar for M_K_Higa
0
2K
Member Avatar for sant

I use IE 6 as my main browser. However, when I design CSS, I usually design against Firefox and Opera because these browsers are more standards compliant. Once I get it right in FF and Opera, then I can start tewaking for IE, but keep in mind that you should …

Member Avatar for M_K_Higa
0
107
Member Avatar for M_K_Higa

Hello Everyone, I just joined this group; I hope I can learn as well as contribute. I joined this group to ask a MS SQL related question, which I already posted. I hope to get lots of responses. -Mike

Member Avatar for M_K_Higa
0
43
Member Avatar for Slade

I suppose it really depends on your desire. If you are on a Windows/IIS platform, you can stick to C# and/or VB.Net in the ASP.Net environment. Lots of foks use this and it seems to be popular in the corporate world - especially in intranet scenrios. Linux/UNIX Apache platform has …

Member Avatar for M_K_Higa
0
343

The End.