Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
69% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
6
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
6 Commented Posts
0 Endorsements
Ranked #371
~44.1K People Reached
About Me

Hi i am saion from Bangladesh. 5+ years experience in web application arena. I love to code in asp.net & sql server. Always try to learn & share.

Interests
Travelling
PC Specs
Intel Core 2 Duo
Favorite Tags
Member Avatar for eedirex

Hi, Am a final year computer sci student in the university,and have been assigned an online test application for my final project.Please anyone with ideas on how i can carry out this project should please forward their help. Thanks!

Member Avatar for Theirligh
0
317
Member Avatar for anup.maverick

Hi, I want the vb.net code(asp.net 2.0) for validating multiple email address in a textbox(multiline). Life is the only God....OSHO Thanx - Anup

Member Avatar for bru moses
0
1K
Member Avatar for cplusplusgeek

I have an entity named Country with fields: CountryID, CountryName where CountryID is a primary key. And i like to create a general stored procedure that does INSERT, UPDATE and DELETE operations. How can i do that?

Member Avatar for Reverend Jim
0
2K
Member Avatar for pdoyle1521

I am having a problem with the sql update statement in c#. This click event tests between either "edit" or "new" mode and then uses the proper sql statement. The Insert statement works fine but the Update statement does not update. I created a break point and stepped thru and …

Member Avatar for bilal maverick
0
1K
Member Avatar for Ashoksql

can any one tell me to find out the list of databases that have “.ldf” size greater than “.mdf”.

Member Avatar for mikemsq
0
112
Member Avatar for Sarah Lee

Hi Everybody How can i display in the gridview. "there is no data for this request" if the binded dataset is empty? Can anyone give some ideas? Thanks

Member Avatar for egrullard
1
2K
Member Avatar for RobertKramers

Hi there, Im getting the error above, when i run my code. [code] string myCommand = "SELECT * FROM Manager WHERE UserName=" + ID; SqlDataAdapter da = new SqlDataAdapter(myCommand, con); DataSet ds = new DataSet(); try { con.Open(); da.Fill(ds); [B]// <- highlighting this part of the code..[/B] } finally { …

Member Avatar for samuelmac
0
3K
Member Avatar for Eclipse414

guys, i have this function: [code] Public Function GetDataSource(ByVal dataItem As Object) As DataTable Dim intNo As String = DataBinder.Eval(dataItem, "Item_No") Dim blahdt As DataTable = tempdt [COLOR=Red]'blahdt.DefaultView.RowFilter = "Item_No='" & intNo & "'"[/COLOR] [COLOR=Navy]'blahdt.Select("Item_No='" & intNo & "'")[/COLOR] Return blahdt End Function [/code] i want to filter my datatable, …

Member Avatar for awaishafeez86
0
147
Member Avatar for Annex

Hi. I need TextBox in which user can input only numbers. I found some examples about it, but can't do them. For example in the following code Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If Not (e.KeyChar.IsDigit(e.KeyChar)) And _ e.KeyChar <> ChrW(Keys.Back) Then e.Handles = …

Member Avatar for risingsunankur
0
558
Member Avatar for teckforce

As more and more sites require complex form dialoging, it seems that JavaScript is taking over ASP.NET. Who uses .NET anymore and how sufficient is it? I will admit, JavaScript does have its kinks and perpetual bugs but is far more capable and adaptable than ASP.NET in my opinion. Should …

Member Avatar for teckforce
-1
608
Member Avatar for Kayoss

Hello all! I have a javascript running on my site at [url]http://www.kayoss.net[/url] that disables right clicking (viewing source, saving pictures, etc.) that works beautifully in IE...but not in Firefox. Does anyone know of a solution?

Member Avatar for fxm
0
411
Member Avatar for julseypart

hi, i have a gridview search which filters the gridview, displaying the search results, however it wont highlight the results in yellow: [CODE=c#]//Highlight relevant search results public string Highlight() { //Declaring a variable to hold search query string s = txtSearch.Text; if (s != null) { //string Search_Str = txtGrid.Text.ToString(); …

Member Avatar for kvprajapati
0
200
Member Avatar for shruti patel

how to save the jpg file into database using file upload control? how to retrive that stored jpg file from database and show on image control. i have table has two fields Id(int),imageData(image).

Member Avatar for mail2saion
-1
107
Member Avatar for Pari13

hello sir..... suppose i want to display list of item name at specific portion on webpage(.aspx page) but coding portion is done in aspx.cs file with use of for loop i get Item name into variable from database. now i want to use that varibale to dispaly Item name at …

Member Avatar for kvprajapati
0
5K
Member Avatar for santhoshvkumar

Hi All, For more than two days I m trying this problem. Some one please help me out. My scenario is I want to directly insert data into my table from the input which I get it from text boxes. Here is my code... [code] con = new SqlConnection(); con.ConnectionString …

Member Avatar for asal80
0
107
Member Avatar for NextCom

Many people would probably think this question is stupid, but how can i insert a value that starts with 0 in a Bigint/Numeric/Int field? This would normally not be a problem, just using a varchar field instead, but because of the index speed (this is a very large table with …

Member Avatar for mail2saion
0
89
Member Avatar for ajijacobm

hi,I need help regarding datalist control ie, about deleting,editing,selecting and updating an item in a datalist.I need to learn data binding.Please provide me some code so that i can learn and implement in my project.Anyway thanks in advance.

Member Avatar for mail2saion
0
74
Member Avatar for geek_till_itMHZ

Iam writing (or trying to write) a simple join query statement in Query Analyzer. As of right now Im getting the error message Ambiguous column name 'categoryID'. My Statement is ; [code=sql]Select categoryID, Max (StockPrice) as maxStockPrice, MIN(StockPrice) as minStockPrice, AVG(StockPrice) as avgStockPrice From Category, InventoryPart Where Category.CategoryID = InventoryPart.CategoryID;[/code] …

Member Avatar for princekool
0
156
Member Avatar for gunnarflax

Hi, I'm not good at all at JavaScript but I'm trying, so bear with me. What I want to do is that when I click on a <input type="text" /> tag the checkbox next to it should become checked. I've tried with the help of internet for a couple of …

Member Avatar for gunnarflax
0
225
Member Avatar for kanuri1

why this code is not working........ here iam givin two radio buttons. if first one is selected one text box is displayed. if second is selected one text box is displayed . here my coding is given below please correct it........ [CODE] If yes.Checked Then nicstaff = "Y" ElseIf no.Checked …

Member Avatar for mail2saion
-1
72
Member Avatar for dkuwf

Good morning, I am not familiar with .NET as I primarily work with PHP so any help would be appreciated. I have the following error on our website for one of our pages. Compiler Error Message: CS0103: The name 'reqCheck' does not exist in the class or namespace 'ASP.animal_referral_aspx' Both …

Member Avatar for mail2saion
0
36
Member Avatar for jibhekar

Hi, i have developed a asp.net project(on visual studio 2005) and created a web setup, this project is running fine while i am running in development enviorment(Visual studio), but after installing the setup ,my installed website is running but it is not able to access sqlServer Database ... what i …

Member Avatar for mail2saion
0
80
Member Avatar for capiono

I was wondering if it was possible to this: example [CODE] if exists(Select * From table) select item from table set returnValue = 1 Else set returnValue = 0 [/CODE] Or if there any other way of doing this this

Member Avatar for mail2saion
0
188
Member Avatar for gazalec

Hi, I was wondering if it is possible to update one table with another tables values depending on a where condition, such as a insert into or using a join as a subquery. I have successfully got a windows application to do what I want it to do but it …

Member Avatar for mahmoud_wow
0
224
Member Avatar for 21KristianN

Dear everybody I have a question! I have a database with a invoice table for storing invoice data. In this table i use the InvoiceID as my invoice number. My problem is that if a user makes a mistake and the invoice is deleted in order to create a new …

Member Avatar for 21KristianN
0
357
Member Avatar for kanuri1

hi, i got an problem i wants to update the serialnumber in the database, if i was updating the serial number as (for eg: 3 in place of 4), it was updated. if i was updating the serial number as 3 in place of 4.. here serial number 3 is …

Member Avatar for kanuri1
-1
98
Member Avatar for happyns

Hi one and all, I am using C#.net language in asp.net framework using visual studio 2008. I have one checkbox as input control and two textboxes named textbox1 and textbox2 as asp controls. First the client needs to type something in textbox1 and after that the client needs to check …

Member Avatar for happyns
0
98
Member Avatar for dskumar_85

hai friend's i am having a table in that i have the field like ( id , name , date),in that i stored id name date e123 raj 12/08/2009 e123 raj 12/10/2009 e123 raj 12/12/2009 e124 ram 12/08/2009 like this while fetching the select id ,name,date from tablename where id="@id" …

Member Avatar for mail2saion
0
75
Member Avatar for love_dude1984

hi.. im using a a gridview with template fields which contains labels to display the dynamic data from database.. my problem is, i want to use paging concept in the gridview. but as im using template fields & a dynamic database, im getting an error.. this is how im binding …

Member Avatar for mail2saion
0
121
Member Avatar for love_dude1984

hi.. im using a grid with a template field which contains a button.i just want to know how can i retrive a value from a 2nd cell of the same row... for ex. my grid contains 5 columns.the last col is a template field with a button. ther are say …

Member Avatar for love_dude1984
0
128