Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
9
Posts with Upvotes
9
Upvoting Members
8
Downvotes Received
7
Posts with Downvotes
4
Downvoting Members
7
12 Commented Posts
4 Endorsements
Ranked #396
Ranked #490
~50.0K People Reached
Favorite Tags
Member Avatar for bharathi_n_r

Come on, man. Add a column "UserType" with a value of 0 or 1. 0 for admin, 1 for user. When you check the username and password, also grab the value from that column.

Member Avatar for Shashikantp004
0
1K
Member Avatar for wendas

C# and vb.net are the same for all intensive purposes. It's really about formatting... easy to convert from one language to another.

Member Avatar for Momerath
0
271
Member Avatar for rrocket

Hi - Why not have the user validate the email on registration? I send the user an email with a random number that I generate. Store that number in the database and have them enter it to activate the account. You can also give a link to a blank page …

Member Avatar for <M/>
0
214
Member Avatar for segoed

seriously... i leave VS projects open all the time when i am not working on them, just because i hate closing and re-opening them. even if i don't intend on coming back anytime soon, i often leave project open just by accident. you are better off creating a simple timer …

Member Avatar for happygeek
-1
371
Member Avatar for Yuexuan

sBIG.contains("WHATEVERYOUWANTTOFIND") so like: if SBIG.contains("#") then label1.text = "Hello World" end if

Member Avatar for sushmapotla
0
547
Member Avatar for pyro 214

I can't believe I just spent my time reading Page 1 of this thread. What a lame thread. :(

Member Avatar for Ancient Dragon
0
1K
Member Avatar for WhYuLoOkIn

Hi - Check the spelling on your SQL database, this is probably the issue. An invalid column name means the column simply doesn't exist as stated. Also, try a test. What happens when you run the query: Select DatabaseImage from ImageTable Best/Eric P.S. If this helped, give me some points …

Member Avatar for jasminvictoria
0
338
Member Avatar for maroin22

Hi - I haven't done it, but I think you would need to create a custom control for this. So you would create a control that onload gets the Screen.PrimaryScreen.Bounds (but it needs to be a user control, because otherwise it will return the server screen and that's no good!) …

Member Avatar for vijayjazz
0
214
Member Avatar for cyberjorge
Member Avatar for Catweazle
Member Avatar for Rik_
4
2K
Member Avatar for dskumar_85

Hi... I would suggest passing the CompanyID in Session -- Session.Add("CompanyID") -- and retrieving the companyid -- Session.Item("ComanyID") from the popup. [code] Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) Handles GridView1.RowCommand If GridView1.Rows.Count - 1 > 0 Then If e.CommandName = "WHATEVERYOURBUTTONCOMMANDNAME" Then Dim CompanyID As String …

Member Avatar for imamul.karim
0
2K
Member Avatar for rakeshbpatel
Member Avatar for somesh_nag

I am not sure how to answer the question other than: "ARE YOU SERIOUS?" We would all be in a lot of trouble if IIS was not able to handle 2 users at the same time and keep them seperate.

Member Avatar for eyal_elkevity
0
122
Member Avatar for ebabes
Member Avatar for jtok

Hi J Tok... I take it from AddSystemOS.SelectedValue = OS.Text That you are trying to set the selected value of the dropdown list to whatever the value is from your database. 1. The dropdownlist has 2 properties. A DataTextField and a DataValueField. Is your DataValue field properly bound to the …

Member Avatar for kvprajapati
0
3K
Member Avatar for chankya

i don't know... but does anyone else feel like the new colorful $20 bill should be worth more than the old $20 bill... or is it just me? (it could very well just be me... :) )

Member Avatar for GrimJack
0
244
Member Avatar for ericstenson

Hi, I am receiving a stream of data (a text message) through a TCP listener. It then sends back a stream. Then the first computer (the client) sends another stream of data. Then I send back a response message. The first message is successfully received. The first response is successfully …

Member Avatar for kvprajapati
0
1K
Member Avatar for earlofroberts

dim string1 as string string1 = gridview1.rows(row#).cells(cell#).tostring now, here is the kicker. the first row is row "0" the first column/cell is "0" it goes against intuition of using 1... if you still need help estenson1 at gmail best, eric

Member Avatar for cynix008
0
97
Member Avatar for rajesh79

select top 3 COLUMNAME from TABLENAME order by COLUMNAME desc The first row will be your third highest paid person.

Member Avatar for manips
0
78
Member Avatar for coollife

Why can't you run a SQL UPDATE statement... UPDATE TABLE_NAME SET INT_COLUMN = (INT_COLUMN - 1) WHERE INT_COLUMN > @DEL_ROW_VALUE Would something like that work?

Member Avatar for carobee
0
114
Member Avatar for k.vijayakumar

Spicelogic has a component that you can drag-n-drop. I have used it, it's cheap and quite an efficient way to integrate PayPal into .NET apps.

Member Avatar for ericstenson
0
107
Member Avatar for srikanthkadem

Hi - Try e-mailing the message to [email]PHONENUMBER@CARRIERNAME.COM[/email]. For instance, in the USA, if you wanted to text 212-555-1212, a verizon wireless customer, you could just send an e-mail to [email]2125551212@vtext.com[/email] and it will convert your e-mail into an SMS message to the phone. Now, let's suppose you don't know …

Member Avatar for virtuelabz
0
190
Member Avatar for rhinocort23
Member Avatar for BlahHx2
Member Avatar for Jammerx2
0
208
Member Avatar for ak2ktech

[QUOTE=ak2ktech;843816]Dear Friends, i host a website and use visual web developer for aspx ... i want to create a form , in which users will aftre logging to my page enter 10-12 fields and that will be appended in a backend database on my server eg MS Access... please suggest..[/QUOTE] …

Member Avatar for mail2saion
0
116
Member Avatar for Alaskaaa

IF IT IS RELATED TO A TEXT BOX: [code] Protected Sub TextBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged If IsNumeric(TextBox1.text) = false then try textbox1.text = textbox1.text.substring(0, len(textbox1.text) - 1) catch ex as exception textbox1.text = "" end try end if End Sub [/code] If you generally …

Member Avatar for mail2saion
0
107
Member Avatar for ericstenson

Hi- Does anyone have any good code to watermark an image in vb.net? I guess this would be effectively the same as overlaying a 2nd image on top of an existing image. Thanks, Eric

Member Avatar for gauravmajithia
0
142
Member Avatar for darcee
Member Avatar for ericstenson

Hi - I was wondering if there is a way to force a postback after the FileUpload1 control has a file... Right now, people his "Browse" select the file then click another button to upload the file. I want to write code on postback to automatically write the file to …

Member Avatar for SheSaidImaPregy
0
981
Member Avatar for himanjim

Hi - There are a host of issues that can cause this, and there is no solution that can be provided here given the information provided. 1. Some hosting providers, such as GoDaddy, so not allow remote inbound our outbound database connections. Check with your hosting provider to see if …

Member Avatar for sedgey
0
141