You may need to wait a bit, and please tell me the site which you want to Optimize. and also use URL Rewriting that actually works.
Agha net
Posts
-
ranking in Search engine -
Parent Container in Nested RepeaterDo one thing create a public function in code behind file which get the data from the parent repeater and call that function in child repeater. It would be nice to have a code from you so that i can make changes in that way. Best Regards, Agha Usman :)
-
Passing Value to a Web User ControlWell i guess you have simple copy paste the above line dear private void Page_Load(blabla sender, blabla e) this line is paassing FAKE parameters that is why the trick is not working :)
Private Sub BindData(ByVal Customer_ID As Long) Try Dim dt As DataTable = ObjProject.GetProjectByCustomerID(Customer_ID) Dim con As Control = LoadControl("/Controls/ProjectViewCon.ascx") CType(con, Controls.ProjectViewCon).DataTable = dt PlaceHolder1.Controls.Add(con) Catch ex As CustomExceptions.Exception_NoRecordFound Lbl_Error.Text = "You have not posted any project as yet [click here](/dynamic/PostProject.aspx/) to post project." Catch ex As Exception Throw ex End Try End Sub
This is a function call this function in Your Load method. it will work and please do some necesaary alteration. -
Creating Custom True type fontsIs there anyway to create True type fonts on runtime...
-
First item in a DropDownListDear that is javascript not java :) anyway .. can you show me that page so that i can know what exactly you want .
-
Passing Value to a Web User ControlYes ... I have done the same thing.... but instead of text i was passing string from the Base container or parent page. Since I am VB fan i use to write my code in vb.net just to give you idead. Check the following code :
'Page load of You Base Page Private Sub Page_Load(byval sender as blabla , byval e as blabla) 'Loading Control in a variable called Con Dim Con as Control = LoadControl("~/Controls/MyGrid.ascx") 'I am just converting the type of Control. Coz notice the above line the control which we are loading is actually of "Control" type we are converting this to MyGrid which contain the property Ctype(Con,MyGrid).query = "Select * from tbl_Emp" Page.Control.add(Con) End Sub
I wish the above code will help you out ... if you do the same thing in any other way do let me know .... :) Best Regards, -
First item in a DropDownListThis problem is quit common but actually it is not any problem it is just a logic the event in code behind is associated with the selected index change of DDL when the index is same there is no need to fire the event. anyway the solution is : have you ever notice the status bar when your mouse is over the link button. :) that is actually java script which postback the page simple do one thing with the use of javascript find an event which fires accorfing to your wish. Since javascript have many events :). and at that specific event dopostback to the server and call you desire method For posting the page back from java script http://www.codeproject.com/aspnet/jsnopostback.asp [^] read this article I wish my participation in your problem will be helpfull 4 you if you solve the problem in some other way do let me know Best Regards
-
To get the client locationHey Baskar, This is not a hardway you need to spend some money on it. you can get every thing even ISP name :-D but the challenge is ... the service is Paid. http://www.ip2location.net/[^] I wish the information i have given above will be usefull to you. and if you fine some other way doing the same thing do let me know . :)
-
how can i run Intranet web based applicationWell.... Do one thing 1st check that both the computers should be on the same workgroup then try to ping your web server (where you want to access the site) from your client if ping goes well it means the connection in between both the computers is OK. then try writing Ip address instead name. http://dev1/anikita/index.aspx http://192.168.0.1/anikita/index.aspx If this thing not works !!!!!! go to the properties of your website and select directory security tab there is a Groupbox of "Ip Address and domain name restriction" Press edit and grant access to your client IP. And at the end make sure that you have not installed any firewall which is restricting any other computer to access resources. I wish above paragraph could help you. If you come out of this some other way do let me know :suss: Best Regards,
-
How could i create dynamic TTF (true type fonts) at runtimeHi, Can you guys help me is solving this issue ... there is website called http://www.fontifier.com which is providing Dynamic Creation of true type fonts . means they are providing their customer to create TTF by their handwriting and then let them download their created font. So what they are using, i have googled this thing but got all the raw result one thing which I get is ImageMagik but it seems not usefull in this scenerio. I m asking for your help after applying full efforts on google and other search engine. Thanx in advance :)