Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
33% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #2K
~62.0K People Reached
Favorite Tags

77 Posted Topics

Member Avatar for Doctor Inferno
Member Avatar for bharanidharanit

Hi, I am using this SP, am getting both the result when using mysql workbench. CREATE PROCEDURE SP(IN _start INT,IN _end INT,INOUT _count INT) BEGIN SET _count = (SELECT COUNT(*) FROM tbl); SET @qry = CONCAT('select * from tbl limit ', _start, ',', _end); PREPARE stmt FROM @qry; EXECUTE stmt; …

Member Avatar for LastMitch
0
191
Member Avatar for bharanidharanit

hello, I am using Visual Web developer 2008. I am using loginname control. there it displays name as admin. How to get that value to textbox or label. Simply i want to get that value as string. Thanks

Member Avatar for skhan7332
0
172
Member Avatar for bharanidharanit

hi, I hav a created a field with unique constraint, so if it got duplicated error must be returned from procedure. Wats wrong here? [CODE] $dbconn = new DbConn; $dbc = $dbconn->Fn_CreateDbConn(); $Qry = $dbc->prepare("CALL CMS_School_Insert(:SchoolID,:SchoolName)"); $Qry -> bindParam(":SchoolID",$SchoolID); $Qry -> bindParam(":SchoolName",$SchoolName); try { $Qry -> execute(); }catch(PDOException $e) { …

Member Avatar for pritaeas
0
65
Member Avatar for bharanidharanit

Hello, How to get the full path from fileupload control browsing the path to it? I want to get as this. c:\Images\mine.jpg

Member Avatar for Shilpakmthn
0
205
Member Avatar for bharanidharanit

Hi, I would like to develop ecommerce site using fuzzy logic. Any ideas? Where to start with? got confused in writing rules for it and implementing the filtering concept based on the user visit.

Member Avatar for chrishea
0
83
Member Avatar for bharanidharanit
Member Avatar for Borzoi
0
213
Member Avatar for bharanidharanit

Hello sir, I am using 2 dropdownlist on my page. Those 2 are bounded to AccessDataSource. Initially dropdownlist2 is hidden. Wen i select some values on dropdownlist1, the other must be visible. Thankyou

Member Avatar for crishjeny
0
73
Member Avatar for darren2005

Hi try this, [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title></title> <style type="text/css"> html,body { margin: 0; padding: 0; } body { background: #CCC; font-family: 'Arial', sans-serif; font-size: 9pt; width: 100%; } #content{ height: 500px; } #hovermenu * { …

Member Avatar for darren2005
0
172
Member Avatar for Famous16

[QUOTE] Hey guys! Just wanna ask some question on how to put a embers log-in or a registration area for viewers? [/QUOTE] Hi, You must use database for this like MySQL, MS SQL, Oracle etc. and also some server-side-scripting languages like PHP, ASP.NET, JSP etc. If you have programming knowledge, …

Member Avatar for bharanidharanit
0
68
Member Avatar for bharanidharanit

Hello, I am storing avatar images in a table dynamically. I want to store only 2 avatars in a row, but there may exists any no of avatars. Also in the view i want only to show 3 rows. The remaining must be hidden. When i click some button i …

Member Avatar for bharanidharanit
0
142
Member Avatar for drewpark88

Hi, Try this, u placed an misplaced else. [CODE] <?php include_once("gatewayapi/inc_gatewayapi.php"); $transaction = new GatewayTransaction($_REQUEST, $_SERVER['REMOTE_ADDR']); if($transaction->ProcessTransaction($responseString, $errorCode)) { $response = new GatewayResponse($responseString, $GatewaySettings['delim_char']); if($GatewaySettings['MD5Hash']&& !$response->VerifyMD5Hash($GatewaySettings['MD5Hash'],$transaction->username,$transaction->amount)) { header("Location: " . $GatewaySettings['PaymentDeniedPage'] . "?gateway_error=" . rawurlencode($transaction->GetErrorString("INVALID_MD5HASH"))); exit(); } if($response->IsApproved()) { $eol = "\r\n"; $to = "donation@myclient.org"; //the recipient $subject = "Donation …

Member Avatar for drewpark88
0
308
Member Avatar for vanessia_1999

Hi, I changed your coding something like this. It is now easy to verify. Dont mingle html in echo. Also when you are getting anything from session means, you have start the session at the top of the page, in both the page, where you are setting sessions and in …

Member Avatar for bharanidharanit
0
90
Member Avatar for bharanidharanit

Hello, Is this possible to set gradient and lightening effect in backgrounds colors with css?

Member Avatar for drewpark88
0
60
Member Avatar for bharanidharanit

Hello, I used the below coding to store an image into the database. [CODE]lblImagePath.Text = ImageUpload.PostedFile.FileName ImageUpload.PostedFile.SaveAs(lblImagePath.Text) Dim mbytes() As Byte = System.IO.File.ReadAllBytes(lblImagePath.Text) Dim cn As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\database\db.mdb;Persist Security Info=False") Dim cmd As New OleDbCommand("insert into ImageTable values (@Image)", cn) cmd.Parameters.Add("@Image", OleDbType.Binary, mbytes.Length).Value = mbytes cn.Open() cmd.ExecuteNonQuery() Response.Write("Image load …

Member Avatar for sakhi kul
0
103
Member Avatar for bharanidharanit

I would like to add captcha to my registration system. I searched google and i get some. There are more number of scripts in that which are little bit complex to go on. I simply took my needs from that. Now My registration page is generating captcha, but i dont …

Member Avatar for bharanidharanit
0
163
Member Avatar for bharanidharanit
Member Avatar for bharanidharanit

Hello, I am using GridViewand bounding values from 2 tables. tbl_login and tbl_register. In tbl_register Table the Field is UserName In tbl_login Table the Field is Active(yes/no field) I used this command to show the fields into the gridview. [CODE] SELECT tbl_createuser.UserName, tbl_createuser.Role, tbl_login.Active FROM (tbl_createuser INNER JOIN tbl_login ON …

0
63
Member Avatar for bharanidharanit

Hello, I am designing School Management System. I dont know how to design database for this. My Application contains 5 parts. Student Teacher Parent Data Entry Admin I need to maintain the following records. And these are not fields and i need all these for the particular page. Register (UserName,Password,SecurityQuestion,SecurityAnswer …

Member Avatar for bharanidharanit
0
103
Member Avatar for bharanidharanit

Hello, I want to use CreateUserWizard. Here i want to add some additional fields in that wizard. Also i want my own validation (even for password format) in this wizard. Also i want this to be stored in my sql database, instead of ASP.NET Website Configuration default website (as it …

Member Avatar for reach_yousuf
0
115
Member Avatar for bharanidharanit

Hello sir, I am creating student attendance tracking system in asp.net. With attendance i need to track students attendance every day and want to generate charts with those data. Charts for Daily Attendance report, Weekly Report, and monthly Report. For this how to design database in msaccess?

Member Avatar for bharanidharanit
0
933
Member Avatar for bharanidharanit

Hello, How to create hover menu. I want to create exactly as attached in the picture. When i mouse over the attendance, the menu should be displayed as such in the picture. Anyone help in this? Thankyou. [ATTACH]12847[/ATTACH]

Member Avatar for bharanidharanit
0
299
Member Avatar for bharanidharanit

Hello sir, how to change this coding to vb.net coding? [CODE] Stream photoStream = PhotoUpload.PostedFile.InputStream; int photoLength = PhotoUpload.PostedFile.ContentLength; string photoMime = PhotoUpload.PostedFile.ContentType; string photoName = Path.GetFileName(PhotoUpload.PostedFile.FileName); byte[] photoData = new byte[photoLength]; photoStream.Read(photoData, 0, photoLength); [/CODE]

Member Avatar for bharanidharanit
0
151
Member Avatar for bharanidharanit

Hi used the below coding for enrypting and decrypting a text. But with this i dont know how to save to a database, when i tried i am getting many errors. How to do this? [CODE]Private Sub cmdEncrypt_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click ' Encrypt MyText …

Member Avatar for bharanidharanit
0
108
Member Avatar for bharanidharanit

Hello, How to show a table on mouse over an hyperlink in asp.net? Initially while page loads the table must be hidden, and when on mouse over it must be seen?

Member Avatar for bharanidharanit
0
224
Member Avatar for bharanidharanit

Hello sir, In a label i am having data like this 12/9/2009. With split function i splitted numbers as 12, 9 , 2009. I want this numbers to be stored in LabelArray as Integers Label1 = 12 Label2 = 9 Label3 = 2009 So i used this coding, but with …

Member Avatar for bharanidharanit
0
102
Member Avatar for bharanidharanit

Hello sir, In Datalist, the datas are bounded from Accessdatasource. Accessdatasource contains StudentName field only. I create itemtemplate field with checkbox. Now When i click a button, the StudentName must be written for the checked one's from the checkboxes? Thankyou

0
67
Member Avatar for bharanidharanit

Hello, I am using Visual web developer 2008. I am using AccessDataSource and i connected access database with that. Now on my login page, i am having 2 text boxes (UserName and Password) and a login button. So when i click login button, those 2 fields must be checked with …

Member Avatar for bharanidharanit
0
75
Member Avatar for bharanidharanit

Hello, I am having 3 pages default.aspx, default1.aspx and default2.aspx Default.aspx is the home page. When i click default2.aspx, it must check whether i have logged in, if not it must redirect to a login page(default1.aspx)

Member Avatar for bharanidharanit
0
108
Member Avatar for bharanidharanit

Hello I am having 3 files. a file contains text as aaaa,bbbb,cccc b file contains text as 1111,2222,3333 so i want to read these 2 files and write to new file as aaaa1111,bbbb2222,cccc3333. Can i able to do this?

Member Avatar for Ancient Dragon
0
127
Member Avatar for bharanidharanit

Hello, I want to read a text file in C and the output file must be created and want to reverse the data in tat output file created. So i used the below coding but not reversing the data in the output file created. eg: input file contains this data …

Member Avatar for Dave Sinkula
0
357
Member Avatar for bharanidharanit

Hello, I would like to develop to social networking website using asp.net. And so where i need to start now? Is there any tutorials?

Member Avatar for thewebhostingdi
0
116
Member Avatar for bharanidharanit

Hello, What is Home Server. Shall i able to run webpages from this server that is from my localhost. I am having some pages over on this Home Server. Can i able to access from Internet that is from WWW.

Member Avatar for caperjack
0
130
Member Avatar for bharanidharanit

Hello, I am using Visual Web Developer 2008. I added CreateUserWizard on the form. In the CreateUserWizard Control, I want to add Captcha Control. And how can i do this? Thankyou

Member Avatar for znetweb
1
165
Member Avatar for bharanidharanit

Hello, I am using visual webdeveloper 2008, I have created users using asp.net configuration. Now i am having 2 roles admin and users, And i am having 3 pages as login,register,secured So wen i enter the website as admin all these 3 pages must be visible to the user. Wen …

Member Avatar for Poojasrivastava
0
101
Member Avatar for bharanidharanit

Hello, Where to download jade.core and jade.wrapper packages??? Thankyou

0
72
Member Avatar for amorphis88
Member Avatar for mail2saion
0
266
Member Avatar for bharanidharanit

Hello, I had uploaded my website to [url]www.x10filehosting.com[/url]. When i try to open my website i am getting this error. [ATTACH]10140[/ATTACH]

Member Avatar for mail2saion
0
97
Member Avatar for bharanidharanit

Hello, I am doing Login Screen in VS2008. When i logon with username and password in form it only checking the first field in database. How to do coding for checking all the fields??? This is my coding [CODE] Imports System.Data.OleDb Public Class frmLogin Private connstring As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data …

Member Avatar for bharanidharanit
0
303
Member Avatar for bharanidharanit

Hello, I am using Visual Web Developer 2008. I am using menu control binded to site map. So when the user role is administrator, i want to remove the menu item from the menu. I used the coding but not working. [CODE]If page.user.isinrole("Administrator") then menu1.items.remove(menu1.items.find("Forums") End if [/CODE]

Member Avatar for bharanidharanit
0
93
Member Avatar for bharanidharanit

Hello, I am using visual web developer 2008. I want to change the Gridview Orientation. (ie) It displays like this [B]Username Password[/B] admin user1 But i want to change like this [B]Username [/B] admin [B]Password[/B] user1

0
50
Member Avatar for bharanidharanit

Hello, I am using visual webdeveloper 2008. I am using menu control which is binded to sitmap. I am having both menus and sub-menus. So when i click the menu, it expands submenu from the side to the menu. But I want the menu to be displayed as such in …

0
65
Member Avatar for bharanidharanit

hello, I am using visual web developer 2008. Here i want to use two menu which gets data from sitemap. In First SiteMap,I am having Home,Friends,Profiles and it is showing correctly in the first Menu. But in the second SiteMap i am having Social,Contact,General and when i try to choose …

Member Avatar for bharanidharanit
0
276
Member Avatar for bharanidharanit

Hello, I am using visual web developer 2008 I am trying to display an image in a table with a master page. But my image is being displayed during designtime but not displayed during run time. I used the coding below. [CODE] <form id="form1" runat="server"> <div> <table style="width: 100%; height: …

Member Avatar for mrGee
0
99
Member Avatar for bharanidharanit

Hello, I am using OLEDBConnection and OLEDBDataAdapter and connected to the MS-Access database. how can i add the textbox value to the table in database on a button click and want to display it in datagridview??

Member Avatar for c0deFr3aK
0
103
Member Avatar for bharanidharanit

Hello, I am using OLEDB and using datareader and with the read function i am reading table to the form. But now i want the textbox values to be written to the table??? I tried with the fill, but not getting.

0
50
Member Avatar for bharanidharanit

Hello, I need to autocomplete for a textbox. If i type 'a" in textbox means, it must show the dropdown list showing all words starting with a. Like that for all the alphabets. It must show the words based on the user typed words before. Suppose when the user first …

Member Avatar for vb5prgrmr
0
117
Member Avatar for bharanidharanit

Hello sir, I am using VisualStudio2008 Platform. In registration form, I am having Firstname,Lastname, UserName, and Password Fields. I have connected it to the AccessDataSource. When i click the submit button i want the details to be added to the access database. What is the procedure to do it?

Member Avatar for serkan sendur
0
63
Member Avatar for bharanidharanit

Hello sir, I need to create a ASP.NET Website. What are the basic steps in involving in that? I know to create forms, asp page? But i dont know the initial things.

Member Avatar for agrothe
0
309
Member Avatar for atplerry

Hi, The below link is the thread which i had started in other forums. This may help you. [url]http://www.vbforums.com/showthread.php?t=548043[/url]

Member Avatar for bharanidharanit
0
128

The End.