Forum: ASP.NET 10 Days Ago |
| Replies: 2 Views: 183 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 Also you can write:
DELETE FROM User WHERE UserId BETWEEN 1915 AND 1945 |
Forum: ASP.NET 15 Days Ago |
| Replies: 3 Views: 285 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 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 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 Remove charid both from insert statement. |
Forum: ASP.NET 18 Days Ago |
| Replies: 2 Views: 182 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 Check that controls were placed inside form tag of your html markup page. |
Forum: MS SQL 19 Days Ago |
| Replies: 3 Views: 404 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 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 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 Your specified column number & supplied values not correct. |
Forum: ASP.NET 20 Days Ago |
| Replies: 2 Views: 219 Try with below sample code:
if(Session["User"]!=null)
lblName.Text=Session["User"].ToString(); |
Forum: ASP.NET 20 Days Ago |
| Replies: 1 Views: 259 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 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 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 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 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 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 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 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 Did your paging works without rebinding the data? |
Forum: ASP.NET 31 Days Ago |
| Replies: 1 Views: 198 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 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 To take input did you use gridview?? |
Forum: ASP.NET 33 Days Ago |
| Replies: 1 Views: 249 try to use innerhtml instead of value. |
Forum: ASP.NET 33 Days Ago |
| Replies: 1 Views: 187 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 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 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 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 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 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 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 Remove the below line:
mailClient.EnableSsl = true;
Hope your problem will resolve. |
Forum: Search Engine Optimization Sep 5th, 2009 |
| Replies: 9 Views: 494 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 Hi akshits,
Share with us. |
Forum: ASP.NET Aug 10th, 2009 |
| Replies: 2 Views: 244 |
Forum: ASP.NET Aug 10th, 2009 |
| Replies: 6 Views: 661 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 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 I think pivot is the best solution in this regard. |