yes u can do it ... select your datagrid,then in the properties of your datagrid,click on " property builder" ... then in the " column " you can set ur changes ... or with " convert to template ..."
luckyve
Posts
-
How do i do move columns in datagrid?????? -
How do i do move columns in datagrid??????in template of datagrid u can do this
-
Message errorr u using the message board which is for another project? you may change the namespace " Message " to the name space whis is for ur real project.
-
help with search codeHi friends. I am cearting my website using Asp.net ( code C# ) and sqlserver2000... I need "search" in a webform. for example, when the user types " demo " in the textbox of the search page, then it should appear all the things in all pages of the website,which is correlate with the word "demo". Just like the search in codeproject. how can I do it ? I just know about searching with a specific field,like user name,age,... but I dont have any idea about a word searching ... is there any articles which can help me? Or can anyone help me to write ...? thanks alot.
-
[Message Deleted]do u know the code? so that we can use...
-
help me with search codenetJP12L wrote:
Put "Like" keyword in your select query and pass different parameters i.e syntax may not be write: Select * from Like="AAA",Like"BBB";
sorry I didnt understand ... What does "like" do ?? What is "AAA" or "BBB" ...? I want this search form to work with any word...like codeporject's search ... plz help me
-
help me with search codeYes,Sorry I forgot to say.. My Database is SQLServer 2000 plz help
-
help me with search codeHi friends. I am cearting my website ... I need "search" in a webform. for example, when the user types " demo " in the textbox of the search page, then it should appear all the things in all pages of the website,which is correlate with the word "demo". Just like the search in codeproject. how can I do it ? I just know about searching with a specific field,like user name,age,... but I dont have any idea about a word searching ... is there any articles which can help me? Or can anyone help me to write ...? thanks alot.:rose:
-
how to redirect ot desired page after forms authenticationif (txtuser.Text.Trim().Length>0 && txtpass.Text.Trim().Length>0 ) { bool Success; //here you should set your dataset = class or any other "if.." to check if the login is true or not . your dataset should return Success ( it meants " out,bool" ) if(Success) { System.Web.HttpContext.Current.Response.Redirect("WebForm2.aspx"); }
-
how to redirect ot desired page after forms authenticationfor example you have a page called "abc.aspx" which user should do login here...ok? you need another page called "def.aspx" to appear after the user have login. So you need to define a bool variable forexample " check " ... then set the check ( boolean ) with ur login statement ( checking user name and password ) ...then if the "check" is true then u need to have a code there to redirect to "def.aspx"
-
How to create database with user id and passwordI think you may work with "security" select your database and go to "security" you can there set logins.
-
Display Datagrid horizontallyHi. I had this problem too:( but I couldnt find any way ... I dont think it is possible ... just you can work with datalist.
-
Data grid!did you set the "data source" and "data member" for it ? then u should use data bind .
-
Page EncodingJohn Gathogo wrote:
When I right-click on the page and check Encoding it is set to "Chinese Simplified (GB2312)"
If its about encoding,you should do this : right click on your form to access the " document properties " then change the charset to " unicode utf8 " ... or you can also save your pages as ( "save as " ) unicode utf8 by clicking the little arrow on the "save" button whiling saving your page ... if you have any problems please tell ...
-
datagrid-graphicthank you. You helped me alot.
-
datagrid-graphicthank you Where Can I find this component? ot please tell me more aboute using css. I know about css but how can I use it in a datagrid?!!
-
datagrid-graphicHi. Datagrid is very simple in graphic ... I want to have a nice datagrid!what should I do? is there any component or code or ...? for example I want to have a nice line under each row in datagrid ... What can I do ?:cool:
-
datagrid-directionThank you very much but I want to use datagrid not datalist ...its better I think. any other ideas about direction of datagrid as I asked above?
-
datagrid-directionHi. I have used a datagrid in my project. Usually ( or always ) Columns of a datasource is next to eachother as it shown in datagrid. for example datagrid shows like this : Header1 Header2 databound databound Now,my question is : Can I have these columns under each other ? like this : Header 1 databound Header 2 databound how can I do that ?
-
asp.net-text editorHello ... I am creating a website using asp.net1.1(visual studio2000 with C# code) and Sqlserver2000 ... I want to create a place so that the admin can post a message ( like posting message here) ... I need a text editor,like adding smiley,changing font ( formatting)... How can I do it...? please help me. thank a lot dear friends.