Search Results

Showing results 1 to 40 of 216
Search took 0.02 seconds.
Search: Posts Made By: mail2saion
Forum: ASP.NET 10 Days Ago
Replies: 2
Views: 183
Posted By mail2saion
Make the following change in the node of the system.web section of the web.config file:


<httpRuntime maxRequestLength="11000" executionTimeout="275"/>


If does not resolve then post exact...
Forum: MS SQL 12 Days Ago
Replies: 2
Views: 369
Posted By mail2saion
Also you can write:

DELETE FROM User WHERE UserId BETWEEN 1915 AND 1945
Forum: ASP.NET 15 Days Ago
Replies: 3
Views: 285
Posted By mail2saion
Its a bit time consuming to read your code. But i can give you one tricks & hope it will resolve your problem.

Wrap all insert related code under loop. I mean within the loop open connection...
Forum: ASP.NET 17 Days Ago
Replies: 1
Views: 153
Posted By mail2saion
For dropdown you can read my below post on C#:

http://shawpnendu.blogspot.com/2009/05/how-to-bind-or-populate-data-into.html

Read the above link if you need to know how to bind data into...
Forum: ASP.NET 17 Days Ago
Replies: 3
Views: 285
Posted By mail2saion
You can follow the below way:

//open your connection here
for(int i=0; i<Convert.ToInt(TextBox1.Text);i++)
{
// insert HERE
}
//close your connection here
Forum: ASP.NET 18 Days Ago
Replies: 2
Views: 209
Posted By mail2saion
Remove charid both from insert statement.
Forum: ASP.NET 18 Days Ago
Replies: 2
Views: 182
Posted By mail2saion
Write sql in the following way:


SELECT MAX(CONVERT(INT,RIGHT(user_id,3)))+1 from master

Will give you the incremented number Now pad FMS & 0 if required by using length of your max func...
Forum: ASP.NET 19 Days Ago
Replies: 2
Views: 258
Posted By mail2saion
Check that controls were placed inside form tag of your html markup page.
Forum: MS SQL 19 Days Ago
Replies: 3
Views: 404
Posted By mail2saion
You can create a view dynamically in the following way:

Declare @SQL nVarChar(1000)

Select @SQL = 'Create View Auths AS (SELECT au_id, au_lname, au_fname FROM Authors)'

Execute...
Forum: ASP.NET 20 Days Ago
Replies: 4
Views: 214
Posted By mail2saion
You mus insert unique value for serial_no & year combindly.

PK_visitors_pass is the constraint name for serial_no & year.
Forum: MS SQL 20 Days Ago
Replies: 3
Views: 366
Posted By mail2saion
Your query won't work. Cause you does not specified non aggregated columns in group by clause.

I can't understand what is you requirement. But you can try with below one:


SELECT case_id case,...
Forum: ASP.NET 20 Days Ago
Replies: 4
Views: 214
Posted By mail2saion
Your specified column number & supplied values not correct.
Forum: ASP.NET 20 Days Ago
Replies: 2
Views: 219
Posted By mail2saion
Try with below sample code:

if(Session["User"]!=null)
lblName.Text=Session["User"].ToString();
Forum: ASP.NET 20 Days Ago
Replies: 1
Views: 259
Posted By mail2saion
What type of help required? Do you know how to write code.

Few steps you can follow:

Open vs. Go to file-->new-->website.
Then you found a default.aspx page.
now from tool box add some labels...
Forum: ASP.NET 21 Days Ago
Replies: 3
Views: 333
Posted By mail2saion
HI,
You can use the below javascript method to read asp radio button list selectindex, selected value.

<script type="text/javascript">

function GetRadioButtonSelectedValue()
{
var AspRadio =...
Forum: ASP.NET 21 Days Ago
Replies: 2
Views: 309
Posted By mail2saion
You have to cast the session first. Following is an example:

ArrayList ar = new ArrayList();
ar.Add("A");

Session["id"] = ar;
...
Forum: ASP.NET 24 Days Ago
Replies: 4
Views: 371
Posted By mail2saion
OHHHHH Yes please read basic concept on writing SQL. In Insert statement why where clause??
Forum: ASP.NET 24 Days Ago
Replies: 4
Views: 371
Posted By mail2saion
Which error you get?? What is your CustomerID field? Does it autogenerated? If not then check that you may miss must have field values. Please post your error.
Forum: ASP.NET 26 Days Ago
Replies: 4
Views: 373
Posted By mail2saion
Also use ajax popup. Since you want to open window automatically without user interaction. Otherwise window will be blocked by browser.
Forum: ASP.NET 27 Days Ago
Replies: 3
Views: 321
Posted By mail2saion
First calulate man hour for this project. Then multiply by 10-15(based on coder rate/hr) US$ . Hope now you can estimate the price.
Forum: ASP.NET 31 Days Ago
Replies: 3
Views: 2,653
Posted By mail2saion
HI SATHIN,
IF you want to use serverside execution then its easy. Just follow my below tips:

1. let you have a table named student then add an extra column into this table named sort.
2....
Forum: ASP.NET 31 Days Ago
Replies: 2
Views: 535
Posted By mail2saion
Did your paging works without rebinding the data?
Forum: ASP.NET 31 Days Ago
Replies: 1
Views: 198
Posted By mail2saion
Post your code how you read sql result. So that others can give you exact reply.
Forum: ASP.NET 31 Days Ago
Replies: 5
Views: 276
Posted By mail2saion
Then definitely you have maintained id convention when you generate a new row. Add a javascript function for each input textbox for keypress event. So when user enter any number into your input box...
Forum: ASP.NET 32 Days Ago
Replies: 5
Views: 276
Posted By mail2saion
To take input did you use gridview??
Forum: ASP.NET 33 Days Ago
Replies: 1
Views: 249
Posted By mail2saion
try to use innerhtml instead of value.
Forum: ASP.NET 33 Days Ago
Replies: 1
Views: 187
Posted By mail2saion
Template will provide you 100% customization facility. When you stuck with bound field only then you can realize why template column is important....
Forum: ASP.NET 33 Days Ago
Replies: 1
Views: 199
Posted By mail2saion
Its based on your previous experience. If you are new then i suggest to start C#. If you have VB experience then start with vb.net
Forum: ASP.NET 33 Days Ago
Replies: 4
Views: 499
Posted By mail2saion
I also suggest you read the below article:
http://www.codeproject.com/KB/webforms/MasterDetail.aspx
Forum: ASP.NET 33 Days Ago
Replies: 4
Views: 499
Posted By mail2saion
You can follow the below steps:
1. Add a template column within the master gridview.
2. Add a collapse image first like <img src="Image/Expand.jpg"...
Forum: MS SQL Oct 5th, 2009
Replies: 3
Views: 738
Posted By mail2saion
Can not understand your requirement + table design is not up to the mark. Also hard coding values may not help you.
Forum: ASP.NET Oct 5th, 2009
Replies: 3
Views: 433
Posted By mail2saion
Yes its a datasource. It will enlist all files under the folder specified in first line.
Forum: ASP.NET Oct 5th, 2009
Replies: 3
Views: 331
Posted By mail2saion
Let you have two pages named A and B. When user in B then you do not want to go back to page A. Then write the below code in page A.


<head runat="server"><title>login page</title>
<script...
Forum: ASP.NET Sep 5th, 2009
Replies: 2
Views: 615
Posted By mail2saion
Remove the below line:

mailClient.EnableSsl = true;


Hope your problem will resolve.
Forum: Search Engine Optimization Sep 5th, 2009
Replies: 9
Views: 494
Posted By mail2saion
Submit your site into google first for indexing purpose. After getting indexed you will fund your site in Google. Add keywords in your content page. Add general kewords in master page & also stuff...
Forum: JavaScript / DHTML / AJAX Aug 26th, 2009
Replies: 9
Views: 961
Posted By mail2saion
Hi akshits,
Share with us.
Forum: ASP.NET Aug 10th, 2009
Replies: 2
Views: 244
Posted By mail2saion
You can use valign.
Forum: ASP.NET Aug 10th, 2009
Replies: 6
Views: 661
Posted By mail2saion
The generic approach for style is create an excel file -- format the cell that you want. Then from file menu select the 'Save as Web Page' option to create a html file. Read & examine the code for...
Forum: ASP.NET Aug 9th, 2009
Replies: 2
Views: 287
Posted By mail2saion
Yap asp.net will be slower if you can not handle viewstate properly. Heavily loaded Session also decrease the performence. Check individually each control within the form does it required viewstate...
Forum: MS SQL Aug 3rd, 2009
Replies: 8
Views: 504
Posted By mail2saion
I think pivot is the best solution in this regard.
Showing results 1 to 40 of 216

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC