blah blah blah is here! blah blah » Close

0
votes
2 answers

Why this happens?

sanjib
226

Whenever I connect GridView control to my local database and make AllowPaging property "True" the error coemes like this: " The GridView 'GridView2' fired event PageIndexChanging which wasn't handled. " But when I ...

0
votes
4 answers

How to clear TextBoxes

sanjib
226

This is my code: [code]protected void Button1_Click(object sender, EventArgs e) { string s1 = TextBox1.Text; string s2 = TextBox2.Text; string s3 = TextBox3.Text; blog b = new blog(); if ...

0
votes
2 answers

Why this happens?

sanjib
226

I have created a web server control ServiceControl1 and added it my Visual Studio Toolbox. Later I drag it to a page of my website [url]http://aspspider.info/sanjibsinha[/url] But whenever I want to open the page [url]http://aspspider.in ...

0
votes
1 answers

How to count page-viewed number

sanjib
226

I have this code in my Global.asax file [code] void Application_Start(object sender, EventArgs e) { // Code that runs on application startup Application.Add("clickCount", 0); }[/code] I have code ...

0
votes
1 answers

Passing information between master page and content

Is it ideal that master page and content will be independent as long as passing information is concerned or it's neccessary that they should pass information in some cases?

Feedback